Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi please help me,
i need to sum average's values:
Column "Average of Puma Points" is averages automatically:
And i need to do column:
Year_month, SUM(AVG(Average of puma points))
but it doesnt work.
Solved! Go to Solution.
For this you need a proper measure defined in DAX. Such a calculation is not possible via aggregations in GUI.
Here's something that should work for this particular scenario:
[Puma Points Average-Sum] := var __result = SUMX( ADDCOLUMNS( SUMMARIZE( T, T[Year_Month], T[TaskCode] ), "avg", CALCULATE( AVERAGEX( T[Puma_points] ) ) ), [avg] ) return __result
Best
Darek
For this you need a proper measure defined in DAX. Such a calculation is not possible via aggregations in GUI.
Here's something that should work for this particular scenario:
[Puma Points Average-Sum] := var __result = SUMX( ADDCOLUMNS( SUMMARIZE( T, T[Year_Month], T[TaskCode] ), "avg", CALCULATE( AVERAGEX( T[Puma_points] ) ) ), [avg] ) return __result
Best
Darek
Darek, You Are Great, it works!
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |