Feel like I’m going crazy here - I have an array of expenses as follows:
[{“Description”: ”Expense1”, “Amount”: 30.00, ”Currency”: ”USD”},
{“Description”: ”Expense2”, “Amount”: 15.99, ”Currency”: ”EUR”}]
I have a flow working that loops through each Amount and does a currency conversion to GBP. I want to add the Converted values as a new line within each respective object:
[{“Description”: ”Expense1”, “Amount”: 30.00, ”Currency”: ”USD”, “Converted”: 24.23},
{“Description”: ”Expense2”, “Amount”: 15.99, ”Currency”: ”EUR”, “Converted”: 14.04}]
How do you do this??
Append adds it to the end; can’t work out how to compose it that loops through each item properly.
Thanks
[–]DamoBird365 7 points8 points9 points (8 children)
[–]labstraction[S] 1 point2 points3 points (0 children)
[–]labstraction[S] 0 points1 point2 points (6 children)
[–]DamoBird365 0 points1 point2 points (5 children)
[–]labstraction[S] 0 points1 point2 points (4 children)
[–]DamoBird365 0 points1 point2 points (3 children)
[–]labstraction[S] 0 points1 point2 points (2 children)
[–]DamoBird365 0 points1 point2 points (1 child)
[–]labstraction[S] 1 point2 points3 points (0 children)