is there a not between

  • Thread starter Thread starter Dan
  • Start date Start date
Sure:
Not (Between #1/1/2004# And #12/31/2004#)

Watch the nulls. If you want all records except those between the dates, and
some have no date entered, you need:
Is Null Or Not (Between #1/1/2004# And #12/31/2004#)
 
NOT can be used with anything

Try:

WHERE [somefield] NOT (Between 1/1/04 and 12/31/04 )

or

WHERE [somefield] NOT Like '*/*/2004'
 

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

Similar Threads


Back
Top