Date search for dates earlier than today

TheHub

Registered User.
Local time
Today, 02:34
Joined
Jun 22, 2012
Messages
30
I am stuck trying to query a table for entries in a date field that are 21 days earlier than the current date. I thought I could use the built in 'Now()' but am struggling. Any pointers would be helpful :banghead:
 
Try this criteria..
Code:
DateAdd("d", -21, Date())
In the Date Column you are trying to filter..
 
... or, maybe,
Code:
DateAdd("w", -3, Date())
 
@Geo
My post was based only on the "21" value that means exactly 3 weeks.
 

Users who are viewing this thread

Back
Top Bottom