I'm not sure if this is really a form or a table issue. I have the following Validation Rule for a table field that I am using in a form. My goal is to limit the entry to 3 case-specific words.
Code:
="WAREHOUSE" Or "STORAGE" Or "QA" And <>"warehouse" And <>"storage" And <>"qa"
The only entries this form will currently accept are WAREHOUSE, STORAGE, warehouse, and storage. It won't accept QA (or even qa).
What is wrong with my logic? My goal is to allow only WAREHOUSE, STORAGE, or QA (in all caps).