Help me, please.
I have a Tablix with column group that shows values for each month.
Like the exemple:
 JUN/2012|JUL/2012                                                         
 15,00   |26,00                                                               
 15,00   |41,00
I want to sum up the values in the second line, row 2 of second month needs to be value of first month + second month.
Thanks.
                        
You could create a function in the Report Code to keep a running total value, like below:
Of course you would modify the get function to only return the sum of the month values that you want to add together.