Forum Discussion
Anonymous
7 years agoNot applicable
Displaying average with filters
Im struggling with displaying an overall average score Using the 'Quick Meaure' feature it provides the follows Count of Raw_Score average per metric_ref = AVERAGEX( KEEPFILTERS(VALUES('Dat...
- Anonymous7 years ago
Hi Anonymous ,
You can use summarize function to apply first aggregation and use iteration function to apply second aggregation:
Count of Raw_Score average per metric_ref = AVERAGEX ( SUMMARIZE ( ALLSELECTED ( 'Data' ), 'Data'[metric_ref], "Count", COUNTA ( 'Data'[Raw_Score] ) ), [Count] )Regards,
Xiaoxin Sheng
Anonymous
7 years agoNot applicable
Hi Anonymous ,
You can use summarize function to apply first aggregation and use iteration function to apply second aggregation:
Count of Raw_Score average per metric_ref =
AVERAGEX (
SUMMARIZE (
ALLSELECTED ( 'Data' ),
'Data'[metric_ref],
"Count", COUNTA ( 'Data'[Raw_Score] )
),
[Count]
)
Regards,
Xiaoxin Sheng