Date query

S

snappl3

I need to get a query to pull from my database any date 6 months or less into
the future (ex. The query would pull up any orders which have a date of
10/2/08 or sooner). Any help would be greatly appreciated. Thanks!!
 
F

fredg

I need to get a query to pull from my database any date 6 months or less into
the future (ex. The query would pull up any orders which have a date of
10/2/08 or sooner). Any help would be greatly appreciated. Thanks!!


As criteria on the date field, write:
Between Date() and DateAdd("m",6,Date())
 
Top