Hi @EvaAGarcia
The previous one was to display the scan button based on the dropdown value. In that case, "Critical" is the choice value.
Get Data based on Scanner Value
We have 2 options based on the scan value using the scanner.
1. Display individual data (Without form)
Set the onscan property of the scanner
Set(ScannedRecord, LookUp(DataSource,Barcode=Value(BarcodeScanner1.Value)))
Set the label control to display FAA and pump Name
FAADataCard.text = ScannedRecord.FAAColumnName
PumpNameDataCard.text = ScannedRecord.PumpNameColumnName
For Dropdown, Set the Default property as
ScannedRecord.ChoiceColumnName.Value
2. Display data on the form (Edit form)
Set Item property of Form as
LookUp(DataSource,Barcode=Value(BarcodeScanner1.Value))
and Datasource as SPListname or any data source