I have an excel table with three columns, Barcode, Available, and StockQty.
I am trying to build a PowerApp where I can scan a barcode, and it look on the Excel Table in the "Barcode" column for that value.
If that barcode is in Table 1, column "Barcode" - I would like it to go to a form so I can update the Available and StockQty columns for that barcode.
I can't seem to get past the first step here.
I have tried creating a Collection of Scanned Values...
Collect(colScannedItems,
{ScannedItem: First(BarcodeReader.Barcodes).Value, ScannedTime: Now()}
)
I have tried creating a Lookup...
LookUp(Table1,Barcode=First(BarcodeReader.Barcodes).Value)
But I keep receiving errors.
I believe a Patch function will be needed, but I cant figure out logically where to put it because BarcodeReader creates a table.
Any help is appreciated! I can't find very clear info on the most up-to-date Barcode Reader input.