I have a Power Automate that returns a table whose corresponding json structure is :
[
{
"ID": "66747a09-1457-ee11-be6f-000d3ab1b2d7",
"Date": "23/01/2024 09:27",
"Status": "201"
}
]
There is a collection who has a similar structure.
I would like to update the status of the collection with the value coming from Power Automate
I tried the following code
ForAll(
Flow_result;
Patch(Collection;
LookUp(Collection ; ThisRecord.ID=ID);
{'Status':ThisRecord.'Status'}
)
);;
But I get only the first line updated ....
Can you help me pls?


Report
All responses (
Answers (