obtain data for 12 months rolling

K

Karine

I have a database to compile data on attendance & absenteeism.

I have over two years of data. Two ways to look at the absenteeism: monthly
basis and 12 months rolling (last 12 months).

I am looking for a formula that would give that 12 months rolling in my query.

Thanks a lot
 
A

Arvin Meyer [MVP]

Karine said:
I have a database to compile data on attendance & absenteeism.

I have over two years of data. Two ways to look at the absenteeism:
monthly
basis and 12 months rolling (last 12 months).

I am looking for a formula that would give that 12 months rolling in my
query.

Thanks a lot



How about:

Between DateAdd("m", Date(), -12) And Date()
 

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