Hello All,
I have an app for a new business process that I want to scan a barcode, once it scans that barcode it finds that barcode number in a SharePoint List column and brings specific data from that row in the SharePoint list back into the Power App. Then, after reviewing the information, it is then submitted and specific data goes into another SharePoint List - I am have an issue getting it to function correctly.
First, when the data comes over from the first SharePoint list and is submitted to the next one, it does not clear that data after it is then submitted to another list.
Second, when the data is submitted and we return to scanning page, it is displaying another rows data (this row is not reference at all so I do not know how that data comes in but it is the next row of data)
Could someone please assist?
OnScan: If(IsBlank(LookUp('Building List Austin', Barcode = BarcodeScanner1.Value, Barcode)), Patch('Building List Austin',LookUp('Building List Austin', Barcode = BarcodeScanner1.Value), {'Building_Name':BuildingName_value, 'Address': Address_value, 'Area Manager:': AreaManager_value}))
Text: LookUp('Building List Austin', Barcode = BarcodeScanner1.Value, 'Building Name')
OnSelect: Patch('Building Barcode Scans' , {Location: BarcodeScanner1.Value, WhoScanned: User().FullName, Time: Now()})