Guys, please help. I am trying build a stock...

Guys, please help.

I am trying build a stock inventory. But every time scan for โ€œout activityโ€, the item name is not change to proprietary name.(only list the first of stock name).

I put LOOKUP, but still the same,

Is there any mistake procedure ?

Can someone help me

0 4 330
4 REPLIES 4

Jonas
New Member

so you dont want anything to be shown if [Barcode] is blank, right?

just wrap your LOOKUP with an if() statement.

if(isnotblank([Barcode])

LOOKUP(โ€ฆ),

โ€œโ€ )

@Jonas I need the name listed as proper of reader from barcode. If I scan barcode on row 01 should name appear name item of row 01โ€ฆen so on

for barcode at row 02 name should name item of row 02

I would the result when I scan barcode are :

70563xxxx translated to โ€œkeyboardโ€ at name of application 1234567xxxx should translated to โ€œDesk phoneโ€

In my case no matter I scan for many items on stock, the name only stated โ€œkeyboardโ€

Jonas
New Member
  • remove blank cells from your sheet above your headers - try using select() instead of lookup():

select(inventoryList[Name],[_thisrow].[Barcode]=[Barcode])

Top Labels in this Space