Query Criteria: Current month -9

F

franklinbukoski

How do I input this in the criteria of the query. I'm trying to keep a
rolling record on a report to give me who has been assigned to the company in
the last 9 months, so whenever I open the report the data will always be
current.
 
J

John Vinson

How do I input this in the criteria of the query. I'm trying to keep a
rolling record on a report to give me who has been assigned to the company in
the last 9 months, so whenever I open the report the data will always be
current.

If you want to retrieve all records for which a datefield is in the
past nine months, use a criterion

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

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

Top