OK, I started searching this issue and I don't see anything even close.
I have a report based on a query giving me totals by month like this:
MyDate Amount
01/09 100
02/09 35
03/09 50
What I want is a report that will let me group each month and report for that month and all previous months with a running sum. It would look like this:
Month 01/09
MyDate Amount CumAmount
01/09 100 100
-----
Month 02/09
MyDate Amount CumAmount
01/09 100 100
02/09 35 135
-----
Month 03/09
MyDate Amount CumAmount
01/09 100 100
02/09 35 135
03/09 50 185
When I lay that out visually it looks like it shouldn't be too hard with a running sum, but I cant figure out how to bring previous months. Any ideas?
Thanks!!!
misscrf
It is never too late to become what you could have been ~ George Eliot
I have a report based on a query giving me totals by month like this:
MyDate Amount
01/09 100
02/09 35
03/09 50
What I want is a report that will let me group each month and report for that month and all previous months with a running sum. It would look like this:
Month 01/09
MyDate Amount CumAmount
01/09 100 100
-----
Month 02/09
MyDate Amount CumAmount
01/09 100 100
02/09 35 135
-----
Month 03/09
MyDate Amount CumAmount
01/09 100 100
02/09 35 135
03/09 50 185
When I lay that out visually it looks like it shouldn't be too hard with a running sum, but I cant figure out how to bring previous months. Any ideas?
Thanks!!!
misscrf
It is never too late to become what you could have been ~ George Eliot