I was trying to exclude several values from one field in a query Only one value is allowed in the field.
This didn’t work:
Not “value” Or Not ‘”Value” Or Not “Value” (it would still return everything).
Then I tried this, which works:
Not “value” And Not ‘”Value” And Not “Value”
I just wonder why the second one works. I thought the AND operator would only return values that were together in the same record.