Forum Discussion
ShaikRafi
5 years agoFrequent Visitor
Ranking issue
Hi All, I am unable to give the rank, I am getting inconsistent ranking to data I need ranking based on the deposit amount I am writing Dax like above based on depositor amount, main datase...
Anonymous
5 years agoNot applicable
Rank =
RANKX(
// If you want absulute ranking,
// replace ALLSELECTED with ALL.
ALLSELECTED( Bets[User Name] ),
// Measures do not need to be
// wrapped in CALCULATE since the
// engine does it automatically
// behind the scenes for us.
[Deposit Amount],,
DESC, DENSE
)