I am building a report in Report Builder for SSRS. My Data looks like:
My Column Chart is grouped by Organization, with a series group of Category and each of the 6 categories will apply to each Organization.
I'd like to add an additional Line Series to show an overall average of all categories for each Organization.
Can anyone suggest the way to achieve this? Do I need a new calculated field in SSRS, should I enhance my SQL query to get the calculation done there?
My SQL Query is:
select OrganizationUnitID,Category,AVG(NumericValue) as average
, case
when AVG(NumericValue) <= 1 then 0
when AVG(NumericValue) > 1 and AVG(NumericValue) <= 2 then 50
when AVG(NumericValue) > 2 and AVG(NumericValue) <= 3 then 75
when AVG(NumericValue) > 3 then 100 end
as percentage
from SurveyMetricView
group by OrganizationUnitID,Category
order by OrganizationUnitID
The desired result is this chart:
Thanks in advance for any advice.