Hi Guys!
I'm having a little issue - I'm quite new to PowerApps
I'm trying to set my app so that when the barcode is scanned, the data is cross checked with a gallery, and if the data is matched, to navigate to another page in the app.. Here's the code I have (what I thought would work) in the barcode OnScan:
Set(varScan, BarcodeScanner.Value);
If (varScan in "Column1",Navigate(Screen2,none),Notify("No records match this barcode",Error));
If anyone could shed some light on how to do this I'd really appreciate it! 😁