Validation Rule

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the following validation rule attached to a field in a table.
[HRA Directory]<>"CLI"
Is there a way to add more criteria to it, such as in addition to CLI ( or
"ABC")? I was not able to get it to work.
 
CP,

Normally a field-level Validation Rule would not include the name of the
field. You would just put like this...
<>"CLI"

In the other example you gave, try it like this...
<>"CLI" And <>"ABC"

This may also work...
Not In("CLI","ABC")
 
Back
Top