last three months date query

M

msmuzila

what would the criteria be for a query where i want the filter the
SHIP_DATE field for the last three months
 
J

John Vinson

what would the criteria be for a query where i want the filter the
SHIP_DATE field for the last three months

BETWEEN DateAdd("m", -3, Date() AND Date()

will get the range from April 19 through June 19.

John W. Vinson[MVP]
 
J

John Vinson

what would the criteria be for a query where i want the filter the
SHIP_DATE field for the last three months

BETWEEN DateAdd("m", -3, Date() AND Date()

will get the range from April 19 through June 19.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Date search query 0
records for last 6 months 3
Quarterly query 7
SQL to vb 1
Null Value in date field 8
Half years in a query 6
Creating Quarterly totals 5
Query Date criteria 5

Top