help

F

Fie

How do you do a search based on date, for example I have a database,
which is log shipping contacts. How can I search for all entrys logged
which are 6 months old.
 
S

Saran

All you need is

YourDate < dateAdd("m",-6,Now)

' Where "m" stands for month

Hope this help,
Saran.
 
Top