I’m trying to patch to my SharePoint list within a ForAll function by comparing Title to ThisRecord.Title and I’m not sure why the SharePoint list is not getting patched.
This is my formula:
Set(mapDrawings, Filter(MapTest, Drawing <> Blank()));
ForAll(mapDrawings, Patch(MapTest, LookUp(MapTest, Title = ThisRecord.Title), {Drawing: Blank(), ZoneDrawing: Blank()}); );
Can anyone help me understand what is going on here or how to work around this?
Thank you.
Edit: for extra info, the fields I’m patching are multi line text. The patch function works in other areas of my app when I compare to Title to a string variable or if I put Title = “Title” (doing this works even in the ForAll), the main problem seems to be comparing Title = ThisRecord.Title even though ThisRecord.Title matches the Title.