Hi There
Say I have a report that looks like this:
Month. Sales
------- ------
Jan 10
Feb 12
Mar 14
Apr 16
How would I dynamically calculate new rows that combine specific values. Like this:
Month. Sales
------- ------
Jan 10
Feb 12
Jan+Feb 22
Mar. 14
Jan+Feb+Mar 36
Apr 16
As you can see, I need to create a new month, call it whatever I choose, and specify which records to sum when it is calcuated. The data of course are way more complicated than this. I cannot use something like "row 1 + row 2" because everything is dynamic.
Any suggestions? I should mention that the obvious solution of creating new records in the source table is not an option.
Thanks in advance.
Say I have a report that looks like this:
Month. Sales
------- ------
Jan 10
Feb 12
Mar 14
Apr 16
How would I dynamically calculate new rows that combine specific values. Like this:
Month. Sales
------- ------
Jan 10
Feb 12
Jan+Feb 22
Mar. 14
Jan+Feb+Mar 36
Apr 16
As you can see, I need to create a new month, call it whatever I choose, and specify which records to sum when it is calcuated. The data of course are way more complicated than this. I cannot use something like "row 1 + row 2" because everything is dynamic.
Any suggestions? I should mention that the obvious solution of creating new records in the source table is not an option.
Thanks in advance.