Forum Discussion
Individual and Group average
- 7 years ago
hi, Anonymous
This looks like a measure totals problem. Very common. See this post about it
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907For your case, just try this formula:
Measure = var _table=SUMMARIZE(Table1,Table1[Name],"Avg Activities",[Avg Activities]) return AVERAGEX(_table,[Avg Activities])
Result:
Best Regards,
Lin
hi, Anonymous
This looks like a measure totals problem. Very common. See this post about it
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
For your case, just try this formula:
Measure = var _table=SUMMARIZE(Table1,Table1[Name],"Avg Activities",[Avg Activities]) return AVERAGEX(_table,[Avg Activities])
Result:
Best Regards,
Lin
- Anonymous7 years agoNot applicable
Thank you!.
I've just combined your answer with an additional mesasure using HASONEFILETER to come out with a final table:
Now both totals and Team average show the right numbers.