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.
Solved! Go to Solution.
probably you may need to change the Patch condition
and provide how the colreportImages looks like to have a better idea
ForAll(
colreportImages,
Patch(
ReportImageLibrary,
LookUp(
ReportImageLibrary,
ReportID = <<It should go ID from colreportImages>>
),
{PicNumber: AARowNumber}
)
)
probably you may need to change the Patch condition
and provide how the colreportImages looks like to have a better idea
ForAll(
colreportImages,
Patch(
ReportImageLibrary,
LookUp(
ReportImageLibrary,
ReportID = <<It should go ID from colreportImages>>
),
{PicNumber: AARowNumber}
)
)
Hey @krishnags
Your were right. was an easy fix...you can me some clarity.
ForAll(
RenameColumns(colreportImages,"ID","ID1"),
Patch(
ReportImageLibrary,
LookUp(
ReportImageLibrary,ID=ID1),
{PicNumber: AARowNumber}
)
)
Hi @StuCundy, or may be AARowNumber is not set up properly in the collection. I just tried below code and it worked for me. (replace collection, list name and column names to yours)
ClearCollect(
colreportImages,
{
ReportID: 1,
AARowNumber: 2
}
);
Set(
varReportItemID,
1
);
ForAll(
colreportImages,
Patch(
List1,
LookUp(
List1,
ID = varReportItemID
),
{NumField: AARowNumber}
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.