Exclude Multiple Values from Query

gselliott

Registered User.
Local time
Today, 20:16
Joined
May 17, 2002
Messages
106
I know this is probably very easy but I just can't think how to do it. I want to be able to exclude any records in my query that have certain codes (4 codes) I can get the query to work excluding only 1 but it will not work with any more. Anyone any Ideas I have tired <> "Code1" or <>"Code2" etc.

Thanks in advance
 
try using and... instead of or...

<> "Code1" and <> "Code2" ...

regards
 
I used- Not In ("Code 1","Code 2","Code 3")

Good luck!
 

Users who are viewing this thread

Back
Top Bottom