Hi, I am having trouble with a delegation error when trying to transfer multiple scans with one submission.
I have an inventory management app where the user wants to scan all of the items being transferred from one warehouse location into a gallery (e.g., 50 items), and then once the products to be transferred are scanned, they then select a new warehouse location for all of the products in the gallery. This is selected by way of a form. I am using a SP list as a database. "Pallet ID" is the unique identifier for existing records in SP.
My syntax for submitting the change is as below:
ForAll(
Gallery2.AllItems,
Patch(
'SP List',
LookUp(
'SP List',
'Pallet ID' = Body1.Text
),
{'Warehouse Location': DataCardValue29.Selected}
)
)
My barcode scanner syntax is:
Collect(colScannedItems, {'Pallet ID': BarcodeScanner1.Value})
App screen below:

Is there any way to achieve what I want without the delegation error?
Cheers