Forum Discussion
villa1980
1 year agoResolver II
Rank Returning Blank
Hi all, I must be missing something very simple here... I have 2 tables, One that lists Depots by name and depot number, the second is a list of scores by Depot Name and Number A seperate table has...
- 1 year ago
villa1980 , Try using the below measure
Rank_Score =
RANKX(
FILTER(
ALLSELECTED(Depot[Depot Name]),
NOT(ISBLANK(Depot[Depot Name]))
),
[Score],
,
DESC,
DENSE
)
bhanu_gautam
1 year agoSuper User
villa1980 , Try using the below measure
Rank_Score =
RANKX(
FILTER(
ALLSELECTED(Depot[Depot Name]),
NOT(ISBLANK(Depot[Depot Name]))
),
[Score],
,
DESC,
DENSE
)
- villa19801 year agoResolver II
Thank-you for the quick reply, unfortunately it has not removed the blank Depot Name, I wonder if there is an issue with my join between the 2 tables and there is a rogue depot that is causing the blank.