Forum Discussion
Anonymous
7 years agoNot applicable
need help with Ranking in DAX
Below is my data Person Price Calls Measure - Price/Calls Tom 6319.85 102 61.95931373 Harry 3345.9 59 56.71016949 Gina 7678.55 137 56.04781022 George 10882.35 208 52...
- Anonymous7 years ago
Oh, I thought it was just a table and each person had one piece of data.
You may try the followings:
RANKX( ALLSELECTED( Table), CALCULATE( [Price divided by Calls], ALLEXCEPT( Table, Table[Person])), ,
DESC,
Dense)
Anonymous
7 years agoNot applicable
Below is a snapshot of the data that i am working with and with your code for Rank i get below.
Not sure what am i missing here.
Anonymous
7 years agoNot applicable
Oh, I thought it was just a table and each person had one piece of data.
You may try the followings:
RANKX( ALLSELECTED( Table),
CALCULATE( [Price divided by Calls], ALLEXCEPT( Table, Table[Person])),
,
DESC,
Dense)- Anonymous7 years agoNot applicable
Thank you so much Anonymous ...that worked.