Validation arguments

C

Carol Shu

I'm trying to set up a field that will allow you to type in anything but no
letters "I", "O" and "Q" how to do this with my validation rule? Thanx!
 
A

Allen Browne

Sorry: missed a closing quote:
Is Null OR Not (Like "*I*" OR Like "*O*" OR Like "*Q*")
 
Top