query date criteria

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.
 
K

KARL DEWEY

Use DateAdd function --
DateAdd("m", -[Enter offset value], Date())
DateAdd("yyyy", -[Enter offset value], Date())
 
Top