Hi,
I have a report that is put into a collection in PowerApps after doing some calculations. The collection contains the SP List ID that will be updated along with a field value to be updated. When I am trying to update the SP List, it doesn't seem to be working.
My Collection is called colGTSSpent and the SPList is called Footprint.
If(AppliedMonth = "08",
ForAll(colGTSSpent,
Patch(Footprint,LookUp(Footprint,ID=Value(ID)),{GTSAUG: GTSAUG})
)
)
If I patch the record from the gallery it works OK but it takes forever as there are around 1000 records.
Any ideas?