Forum Discussion
Anonymous
4 years agoNot applicable
Average on distinctCount
Dear everyone, I need help to have the average of a distinctCount. I did some research , but without success. I hope that I will be clear: I have the data below: I would like to know the ...
- 4 years ago
Hi Anonymous
Try this measure:
Average Per Country = VAR _A = SUMMARIZE ( 'Table', 'Table'[Country], 'Table'[Product], "DisC", DISTINCTCOUNT ( 'Table'[Color] ) ) RETURN AVERAGEX ( _A, [DisC] )Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/Do you like to see the FIFA Word Cup Dashboard:
VahidDM
4 years agoSuper User
Hi Anonymous
Try this measure:
Average Per Country =
VAR _A =
SUMMARIZE (
'Table',
'Table'[Country],
'Table'[Product],
"DisC", DISTINCTCOUNT ( 'Table'[Color] )
)
RETURN
AVERAGEX ( _A, [DisC] )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Do you like to see the FIFA Word Cup Dashboard:
- Anonymous4 years agoNot applicable
Thank you very very much VahidDM !!! It works very well ! You saved my day 😁