Hello All,
I have created a collection CheckedItems, which is then used to create entries in a SharePoint list using a patch function which I have done successfully. The second part (below) is to then update a different SharePoint list which uses the same collection, ThisRecord.'Wafer ID' to update specific data. Please take a look below.
ForAll(CheckedItems,
Patch(BatchTrack, LookUp(BatchTrack, 'Batch ID'= DataCardValue16_1.Text && 'Wafer ID' = ThisRecord.'Wafer ID'),
{
State: {Value: "TrackOut"},
OpCode: CurrCount + 1
}
));The error I get is pasted in below:
I am new to collections, so hopefully it's a simple mistake. The error highlights the LookUp function, so I suspect the issue is with 'Wafer ID' = ThisRecord.'Wafer ID'
Thank you in advance.
Rob


Report
All responses (
Answers (