Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
19 | |
13 | |
11 | |
7 |