Forum Discussion
Anonymous
9 years agoNot applicable
RANKX
Hello, I have tried many solutions posted on this forum but with no success :(( I hope someone can help me with this case: I have a data set which looks likes this: The clientnr co...
- 9 years ago
hi Anonymous
Put in a matrix the columns of your table in this way:
Then create a measure to Rank this:
Ranking = RANKX ( ALLEXCEPT ( Table1, Table1[category level 1] ), CALCULATE ( SUM ( Table1[clientnr] ) ), , DESC )
Vvelarde
9 years agoCommunity Champion
hi Anonymous
Put in a matrix the columns of your table in this way:
Then create a measure to Rank this:
Ranking =
RANKX (
ALLEXCEPT ( Table1, Table1[category level 1] ),
CALCULATE ( SUM ( Table1[clientnr] ) ),
,
DESC
)
- Anonymous9 years agoNot applicable
Thanx Vvelarde! Your solution works perfect :)