Expression "IN"

Roy217
New Member

I am creating a simple inventory management app.

I am trying to use the IN expression but without success. The objective is to check if the scanned barcode is in the list so if it is the app will reject the input.

Online the only information i find is >> IN({*},{List}): returns true if a value is in a list.

How do i use this expression?

0 5 85
5 REPLIES 5

IN(
	[barcode_number_column],
	table[barcode_number_column]
)

The column name is โ€œbarcode scannedโ€

I tried IN([barcode scanned], table(barcode scanned))
Got an error โ€œUnable to find function โ€˜TABLEโ€™โ€

I tried IN([barcode scanned], LIST([barcode scanned]))
Did not work as well

Change the table to the table name where barcode scanned is.

Thank you!! it worked.

Steve
Platinum 4
Platinum 4
Top Labels in this Space