last three months date query

  • Thread starter Thread starter msmuzila
  • Start date Start date
M

msmuzila

what would the criteria be for a query where i want the filter the
SHIP_DATE field for the last three months
 
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]
 
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

Back
Top