The detail row in my table contains a column with an expression:
=sum(Fields!one.Value) / sum(Fields!two.Value)
I want to sum that column, but the results I get are not the sum of the ratios, but the ratio of the sums. For example:
sum(Fields!one.Value) sum(Fields!two.Value) ratio
3 6 0.5
3 6 0.5
total: 6 12 0.5
I would like the value in the bottom right corner to be the sum of the values above it (i.e. 1.0), not the ratio of the values to the left of it. I've tried calculating the sum as:
sum( sum(Fields!one.Value) / sum(Fields!two.Value) ),
but that gives the 0.5 answer too.
Anyone have any ideas?
[It wouldn't let me post my own answer for 24 hours, so here it is:]
Okay, I figured out a way to do it. I added another column to the right of the ratio column and set its visibility to "not visible". In the detail row, I added this expression:
=runningValue( sum(Fields!one.Value) / sum(Fields!two.Value), Sum, "table1_grp")
(table1_grp was the group that this was within). Then, in the total row, in the ratio column, I just copied the value from the runningValue textbox. In other words, the expression there was:
=ReportItems!Textbox55.Value
So, the running sum is invisible in the table, but I use the final value in the total row.
And it only took me 3 days to figure it out. Whew!
UPDATE:
I showed the problem and "solution" to a colleague and he had a much more elegant solution:
In ratio total box, use the following expression:
=sum( sum(Fields!one.Value, "table1_grp") / sum(Fields!two.Value, "table1_grp") )
Basically, adding the scope to the inner sums does the trick.