Forum Discussion
Anonymous
6 years agoNot applicable
Ranking with table based on Measure
Hello everyone. I have a situation as below: Table Sales, i already have a measure A to calculate % Different by Week / month already. How can I rank customer in Table Sales based on % Different pr...
- 6 years ago
Hi Anonymous
have a look at the great Radacad RANKX articles https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
you can try technique like
RANKX( ALL('Table'[Customer]) , CALCULATE( [Your Measure] ) )
az38
6 years agoCommunity Champion
Hi Anonymous
have a look at the great Radacad RANKX articles https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
you can try technique like
RANKX(
ALL('Table'[Customer]) ,
CALCULATE(
[Your Measure]
)
)