Barcode scanner auto-fill

Hi legends. Is it possible to scan a barcode and have the form auto-fill the item data eg. Name, Price, Category, etc? (if the code has been scanned previously)

If so, how would I go about it?

Thanks in advance

Dan

Solved Solved
0 9 1,809
1 ACCEPTED SOLUTION

Hi @DC81
Check out the Lookup doc @Marc_Dillon posted.
I think it should be more like.
LOOKUP([_THISROW].[Code], โ€œInventoryโ€, โ€œCodeโ€,โ€œItem Nameโ€

View solution in original post

9 REPLIES 9

Thanks mate. I thought it may have had something to do with lookup. Appreciate your input

So it seems Iโ€™m still an absolute noob and canโ€™t for the life of me work this out. The name field on my form just disappears.

In the app formula of Name column, Iโ€™ve put:

If((โ€œINVENTORY_Formโ€ = CONTEXT(โ€œViewโ€)),
LOOKUP([Code], โ€œInventoryโ€, โ€œItem Nameโ€, โ€œCodeโ€),
โ€œSelect Nameโ€)

I want the name field (among others) to display the item name of an already scanned bar Code. How the heck do I achieve this?

Any help would be greatly appreciated

Hi @DC81
Check out the Lookup doc @Marc_Dillon posted.
I think it should be more like.
LOOKUP([_THISROW].[Code], โ€œInventoryโ€, โ€œCodeโ€,โ€œItem Nameโ€

Hi Lynn,

Can you please help me for Auto-Fill for the below

I have two sheets 1) Item Master sheet and 2) Count Sheet (Blank)

Item Master Sheet Column Order (BARCODE, CODE, BRAND, DESCRIPTION)

Count Sheet Column Order (Date(auto), Barcode, Code, Description, Brand, Qty)

Barcode (Scanning Manually)

Code (Auto-Fill)

Description (Auto-Fill)

Brand (Auto-Fill)

Qty (Manual)

Everything you need is in this topic.

That partially works. It brings up an item thatโ€™s already been added to the list but wonโ€™t let me add a new name to a new barcode. Any ideas?

The Item Name field is an Enum dropdown list with Allow Other Values selected. If any of the barcodes match, the name field is unselectable, otherwise it doesnโ€™t even show on the form.

Thanks for the advice too!

Got it. I put LOOKUP([_THISROW].[Code], โ€œInventoryโ€, โ€œCodeโ€,โ€œItem Nameโ€) in Initial Formula with isnotblank([Code])=true in show_if for Item Name column.

You guys rock, thanks for the help!!

Top Labels in this Space