Hello all,
I want to add a simple if condition that will check the value of a text field.
The value of the field might be Peeling or Eatable, if not, show a message on screen.
The condition will occuor by a trigger from a button on screen.
Like the following statement :
If field_name is blank or (field_name != ‘Peeling’ and field_name != ‘Eatable’) then
show message ‘…’
else
continue …
I know to split the two parts of the OR condition but do not know how to implement the second part.
Please help !!!
Hi, Thank you for your quick answer,
This validation is a part of a long list of validations so I must do it on the negative answer, I will use for this the not equals to, this is ok, but how can I do it in a more short way using the expression editor ?
Hi, Wow it is working excellent !!!
Thank you very much for your help, can you explain the meaning of the ^ in the begining and the /S* and the $ sign in the end ?