You want the months to be grouped, so you need to create an alias for the group.
I use something similar in a query I have which joins 3 months worth of data together:
In the query, you need to have something like this:
5MnthCum: IIf(Month Between DateSerial(Year([Month1]),
and
CurMnth: IIf(Month Between DateSerial(Year([Month1]),
You should then be able to do calculations on those figures.
Main Topics
Browse All Topics





by: vinurajrPosted on 2009-11-03 at 00:45:43ID: 25727016
cummulate the 4 months result and divide by the average of the cumulative result.