I need some help solving this and thank you all in advance.
I have a collection that is bulit from user actions which has several columns:
- Image
- Image Title
- File Name
- File Path
the first three are created each time a Collect() is done. The FilePath gets created by running a Power Automate that is the returned value. The problem I am trying to solve is how, inside a ForAll(), I can use each File name value to pass as a parameter to the Power Apps run. command.
Here's what I am trying to do:
ForAll(Sequence(CountRows(colItems)),
Patch(colItems, Index(colItems, ThisRecord.Value),
{FilePath: SignaturePhoto.Run(<colItems.FileName>).FilePath })
);
I tried using ThisRecord.FileName but it doesn't work. So how do I specify the column value from the record in coItems being processed> This proably will be so obvious once someone responds.