help

  • Thread starter Thread starter Fie
  • Start date Start date
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.
 
All you need is

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

' Where "m" stands for month

Hope this help,
Saran.
 
Back
Top