Hi All,
So looking to make a poor man's barcode scanner for some of our field guys, the barcodes and partnumbers are part of a sharepoint list (barcode (num) , partnumber(text) )
I can use a button and run a look up fine against the list with a barcode number
Set(<PartVariable>, LookUp(<SPList>, Barcode = 884548000000, <PartNumInList>))
The variable is populated and used in the rest of the app
But when i try to use the barcodescanner.value it fails to lookup the value
Set(<ScanVariable>, Value(BarcodeScanner1.Value));
Set(<PartVariable>, LookUp(<SPList>, Barcode = Scan, <PartNumInList>))