Forum Discussion
Anonymous
6 years agoNot applicable
RANKX - Ranking Total Sales
Hi All, I have been reading a bit on DAX and trying to work out how the RANKX formula works. I have the below list of data and trying to rank it by sales. My formula is Sales Rank = RANKX(ALL...
- 6 years ago
Hi Anonymous ,
Please update your formula as below.
Measure = RANKX(ALL(Sales[Client]),[Total sales],,DESC,Dense)
v-frfei-msft
6 years agoCommunity Support
Hi Anonymous ,
Please update your formula as below.
Measure = RANKX(ALL(Sales[Client]),[Total sales],,DESC,Dense)
- Anonymous6 years agoNot applicable
Thanks for your help. If I want to rank total sales by sector, I need to write another DAX formula as below?
Measure = RANKX(ALL(Sales[Sector]),[Total sales],,DESC,Dense)