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)
az38
6 years agoCommunity Champion
Hi Anonymous
how do you get [Total Sales] measure?
do not hesitate to give a kudo to useful posts and mark solutions as solution
Anonymous
6 years agoNot applicable
Total Sales = Sum(SalesTable[Sales])