leave out certain data in a query..

  • Thread starter Thread starter stephendeloach via AccessMonster.com
  • Start date Start date
S

stephendeloach via AccessMonster.com

I have a query that pulls all of the Invoice #'s but I dont want it to pull
Invoice # 1, 6651, and 2. How can I exclude these from the query? Thanks.
 
I have a query that pulls all of the Invoice #'s but I dont want it to pull
Invoice # 1, 6651, and 2. How can I exclude these from the query? Thanks.

As Criteria on the Invoice# column, write

(If the Invoice# field is a Number datatype):
Not In (1,2,6651)

(If the Invoice# field is a Text datatype):
Not In ("1","2","6651")
 

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