Hi all,
I am new to powerapps. I am trying to build a simple powerapp to scan a barcode and record it as a new item on SharePoint.
Below is my code for 'OnScan':
Patch(Inventory,{'Scanned By': User().FullName, 'Scanned Time': Now(), Storage: BarcodeReader1.Value, Product:"ORIG INN"})
As soon as I use the BarcodeReader1.value - it doesn't work anymore.
I have tried just putting a static text on the Storage field and I can confirm that it records a new record in SharePoint.
Can anyone please advise how can I get this Barcodereader field to record on the storage field.
Thank you