Query to filter all but two items

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a query that filters data based on a field Status. I want to return
all but two items; "Completed" and "Archived". I know this should be simple
but I can't get them to work togeather. Please help
 
Set the criteria under Status to:
Not In ("Completed", "Archived")
 
Set the criteria to:

.... WHERE ([Status] <> "Completed") AND ([Status] <> "Archived")

You can also use the Not In () syntax like:

.... WHERE ([Status] Not In ("Completed", "Archived"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top