I need cumulative aggregate after each column for my report. I have a dataset with following data samples.
A 21-Nov-13 100
A 1-Nov-13 50
A 1-Dec-13 40
A 1-Jan-13 150
B 11-Nov-13 30
B 2-Dec-13 20
B 13-Dec-13 10
B 12-Jan-13 80
I want a report which look like below. That means Product wise each month total and Cumulative total. I am able to get month wise total value. Only need suggestion for month wise cumulative total.
**
A 150 150 40 190 150 340
B 30 30 30 60 80 140
In the proper textbox use RunningValue function: =RunningValue(Fields!Quantity.Value,SUM,"Category1")
:
And your report will display values as follows: