Automaticly fill in field out of database in a form

Mark1
New Member

Hi,

i am trying to use the bar code scanner to fill in my data.
i have a database and from that database i can retrieve all the information i need.
that database is located on a google sheet.

when i scan the bar code the app needs to located the same bar code in the sheet.
then it needs to retrieve internal name and production date.
the database only shows the first 10 digits of the barcode because the rest of the barcode gives qty and pallet number.

background for this app:
i am making this app to maintain my inventory.
some of the products need to be quality checked before it goโ€™s on stock.
the app will let me know if items need to be checked because they are not in the database.
i also keep track what comes in and what goโ€™s out of stock.
pallets are identified by item, production date , pallet number,.

hopefully some one can help me because i can not find a sample app that does this
thanks

0 1 356
1 REPLY 1

Letโ€™s assume your database sheet is loaded into the app with the name โ€˜databaseโ€™

You would set LOOKUP() expressions for each subsequent column (after barcode) in your scanner table. And use the LEFT() expression to only get the first 10 digits.

LOOKUP( LEFT([barcode] , 10) , โ€œdatabaseโ€ , โ€œbarcodeโ€ , โ€œinternal name/qty/etcโ€)

Top Labels in this Space