Hey Everyone.
I am having difficulty with Power Apps, while using Barcode Scanner. I have linked it with a Share Point list, which will save the scanned barcode in the list automatically upon scanning. On the other hand, I have a column in my list named as Extract. There I wanna store the values 7 values starting from the 5th of the Barcode. This is what my OnScan Command look like:
Collect( colScannedItems, { ScannedItem: First(BarcodeReader1.Barcodes). Value, Extract: Mid(First(BarcodeReader1.Barcodes). Value, 5, 7), Who: User(). FullName, When: Now() } );
But the thing is, it's not saving the Extract value, barcode is being saved but not the extract value. Any idea how to do it? Any quick help would be appreciated as its urgent. Thanks and Regards.