Say I have a dataset called TimeManagement and an aggregated value in an SSRS report as shown in lighter blue in the image below that I want to roll up within SSRS to create a sum total.
Row Groups
Aggregate (Lighter Blue)
=Sum(Fields!HoursMonth.Value, "Period1") / Sum(Fields!VisitsMonth.Value, "Period1")
Total (Darker Blue at the bottom
=Sum(Fields!HoursMonth.Value, "TimeManagement") / Sum(Fields!VisitsMonth.Value, "TimeManagement")
In this case I am creating an new average on the underlying data but what I really need is a sum of all the values shown in lighter blue. How do I go about achieving this?