Forum Discussion

th3h0bb5's avatar
th3h0bb5
Resolver II
6 years ago
Solved

Tiered Ranking

Hello Community! I am endeavoring to rank clients in relationship to their peers. I have data like so:   Overall Rank just uses RANKX() but for TierRank, I want the rank of each client onl...
  • th3h0bb5's avatar
    th3h0bb5
    6 years ago

    Thanks for the links! The DAX you sent didn't work for me, but I pulled this from the Radacad blog and it works fine:

     

    RANKX(
    FILTER(
    'Table',
    'Table'[Category]=EARLIER('Table'[Category])
    ),
    'Table'[My Value]
    )