Hi there
I have a collection reading a document library and which to patch one column to the library items.
The Collection is of Images with a number column "ReportID". I filter the reports by the ID which is set by a variable "varReportItem.ID" I which to update the Number column called "PicNumber" in the Document library which AARowNumber which a column I added. I do not get an error but they do not update.
ForAll(
colreportImages,
Patch(
ReportImageLibrary,
LookUp(
ReportImageLibrary,
ReportID = varReportItem.ID
),
{PicNumber: AARowNumber}
)
)
Look forward to some help, thanks.