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 283
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