query date criteria

  • Thread starter Thread starter CallGlen
  • Start date Start date
C

CallGlen

I want to set the query criteria to look for a date 'x' number of months or
years in the past, something like [<now(minus4years)]. I am sure it can be
done, I just haven't a clue.
 
Use DateAdd function --
DateAdd("m", -[Enter offset value], Date())
DateAdd("yyyy", -[Enter offset value], Date())
 

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