I want to use barcod reader in powerapps. I have materials with unique codes. When i read the QR code, i want that material to enter the detail screen. But i have a problem with my code.
ClearCollect(
FoundProducts;
Filter(Inventory; Barcode = BarcodeReader1.Value)
);;
If(
CountRows(FoundProducts) > 0;
Navigate(DetailScreen1; ScreenTransition.Fade);
Notify("product not found"; NotificationType.Error)
)
BarcodeReader1.Value give an error. How can i do it?
I have a table named "inventory" in excel.
Thank you.