Check condition

Hello,

I want to check if the scaned “labelnumber” already existing in table “receiving” column “labelnumber” and the column “material movement type” in table “receiving” in the same row than the labelnumber is out. If both is true the data is valid.

Please can you help me?

Thank you in advance,
Kai

0 2 282
2 REPLIES 2

Hi Excelaser, apologies for not getting a response on this earlier. Were you able to figure it out? It seems you want to write a LOOLKUP() or a SELECT() expression. You could do something like AND(LOOKUP(First lookup condition)=[Number scanned], LOOKUP(Second lookup condition)=[Number scanned]

Hope this helps.
Santiago

Steve
Platinum 4
Platinum 4

Try as the labelnumber column’s Valid If expression:

ISNOTBLANK(
  FILTER(
    "receiving",
    AND(
      ([_THISROW].[labelnumber] = [labelnumber]),
      ("out" = [material movement type])
    )
  )
)
Top Labels in this Space