I want to display the average percentage for all 'excellent' case outcomes over the 12 month period for all colleagues on a line chart. I want this line to be unaffected by the colleague name filter on the visual.
This is some sample data from the 'case' table:
This is the measure I have so far:
Excellent Fixed =
CALCULATE(
COUNTROWS('Case'),
FILTER('Case', 'Case'[Case Outcome]="Excellent"),
ALLEXCEPT('Case', 'Case'[Date].[Month])) /
CALCULATE(
COUNTROWS('Case'),
ALLEXCEPT('Case', 'Case'[Date].[Month]))
On the line chart visual, the 'Axis' is set to Date - Month and the 'Values' has the 'Excellent Fixed' measure as shown above. This correctly displays the average Excellent cases over the 12 month period but the visual is affected by the colleague name filter (i.e when selecting John Smith from the colleague name visual filter, the visual changes to just show the average for that colleague. Also, I have noticed that the average then being displayed for that colleague is incorrect).
The expected result should be that the measure is unaffected by the 'colleague name' visual filter.