Forum Discussion
amhiggins
5 years agoFrequent Visitor
Show Individual Performance vs. Team Average with Slicer
Hello Community! Overview: I am trying to show the average count of activities completed by person by hour for an entire team versus a selected individual on the same plot using a slicer. My...
MFelix
Super User
5 years agoHi amhiggins ,
Try the following code:
Avg by Person by Hour =
AVERAGEX (
CALCULATETABLE (
SUMMARIZE (
'Table',
'Table'[Actual End By hour],
'Table'[Owner],
"@IDCount", DISTINCTCOUNT ( 'Table'[ID] )
),
ALL ( 'Table'[Owner] )
),
[@IDCount]
)amhiggins
5 years agoFrequent Visitor
Sadly, that calculation changes when I select a person in the slicer. 😞