Hello People,
I'm updating multiple records in a SharePoint list by using a ForAll. Within the checked items to be updated there are drop down lists, 'Box' and 'Slot No'. Although no error is shown the update is not performed. Please suggest alternative code for these two lines as I have become stuck.
ForAll(CheckedItems As D,
Patch(RCAData,First(SortByColumns(Filter(RCAData,BatchID = DataCardValue16_2.Text && WaferID = D.'Wafer ID'),
"Created",
SortOrder.Descending)),
{
TrackOutTime: Now(),
TrackOutComments: DataCardValue29.Text,
TrackOutOperator: OperatorDropDown.Selected.Operator,
Box: D.Box,
ProductID: DataCardValue5_1.Selected.Value,
SlotNo: D.'Slot No',
ProcessCount: CountRows(Filter(RCAData, BatchID = DataCardValue16_2.Text && WaferID = D.'Wafer ID'))
}
)
);
Thank you for your help.
Rob