Forum Discussion
Anonymous
2 years agoNot applicable
RankX
RankX measure in card visual is showing a different number to the rank displayed in a table visual, Is there any solution for this?
- 2 years ago
Anonymous
I have attached a file for you, please check. It works for me.
Anonymous
2 years agoNot applicable
I am using the RANKX(ALL(Category[Category Names]), [Premium]) formula in the table and card visual. When I filter for a specific category it gives a different result in the table and card visual.
Do I need to use a different measure for the card visual?
Fowmy
2 years agoSuper User
Anonymous
You can use the same measure for both as follows. Change DESC to ASC if needed.
Rank Category =
RANK(
DENSE,
ALL(Category[Category Names],
ORDERBY( [Premium], DESC )
)