I have an SSRS matrix report that i have so far managed to format as above. As you can see i have managed to add the totals by "Area" broken down by "Section"
I have also added the grand total row at the very bottom and all is fine up-to this point.
Now my questions:
Does any body have an idea of how i can achieve the above.
I want the final matrix to look like the screenshot below.
Whenever you want to do a calculation for a group in a table, you can use an aggregate expression with the scope of the Group Name.
So you would use the Group Name that is creating the Section and Area groups.
=SUM(Fields!COUNT_FIELD.Value) / SUM(Fields!COUNT_FIELD.Value, "SECTION")
=SUM(Fields!COUNT_FIELD.Value) / SUM(Fields!COUNT_FIELD.Value, "AREA")