Multipe nots

teiben

Registered User.
Local time
Today, 21:40
Joined
Jun 20, 2002
Messages
462
I'm uisng a crosstab query to give me the top 10 rejects in a query. I want to omit "various", "none" and "unknown"

I can get the criteria to not show "various" by using Not "unknown" but when I try and add none and unknown to the statement they show anyway, I've tried

Not "unknown" Or "none" or "various" and
Not "" with , and ; in between and nothing works.

I tried searching not in this section and there were none with the keyword not, Can I be the only one?
 
The criteria should read:
Code:
<>"unknown" AND <> "none" AND <> "various"
 
Another way:

NOT IN ("unknown", "none", "various")
 
Not In ("unknown","none","various") works like a charm

Thanks
 

Users who are viewing this thread

Back
Top Bottom