Hi all,
i have a shceduled cloud flow that triggers every 2 days, in the first action a get currencies exchange rates from a custom connector, in the dataverse side i have a table named currency_list (columns : name, code, rate), i would like to update every row of my column with the correct exchange rates, but the two only way i found are :
1 - Doing a apply to each inside an appy to each (looping through thr rows and also looping through the data)
2 - "Doing update a row" one after another and harcoding the row ID (i need only 8 currencies...)
i also tried to "apply for each" on the table rows then accessing the json data dinamically but i found out that it is not possible.
Is there a nice and clean way to do the job without using an "Apply to each" inside another one ?
Is there a data type that i can generate with a compose that can be accessed dynamically (using a variable) ?
Thanks for your help !