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())
 
Back
Top