Forum Discussion
Trouble Calculating a Dynamic Average
- Anonymous1 year ago
Hi Anonymous ,
Create this measure.
Average Score = CALCULATE ([Score], ALLSELECTED('OST'))Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi Anonymous ,
try like:
average =
AVERAGEX(
VALUES(data[sub category]),
[KO Profitability Score]
)
Hi there,
Thanks so much for getting back to me. So when I update per your suggestion above I just get the same values, not the '17' value I was expecting. The first column is based on a parameter and changes between category and sub-category.
- Dangar3321 year agoResident Rockstar
Hi, Anonymous
Try below amended measureAverage KO Profitability Score = averagex ( allselected( 'Field Select Parameter'[Selection Parameter Fields]), [KO Profitability Score] )Best Regards,
DangarIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous1 year agoNot applicable
Hi there,
Thanks so much for your help. The solution is now showing up like this (it should show up as all 17s) using the above formula.