Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

How to do Ranking

I have a lot of compliance data that I am graphing by the delta. I have 55 different people I am trying to rank based on their compliance. How do I set up ranking in Power Bi desktop?
  • hthota's avatar
    hthota
    8 years ago

    Create a new Measure as

    Sum of Admin_Fee_Delta=sum('New Lease'[Admin_Fee_Delta])

     

    and Create a new measure as

    Admin_Rank = RANKX(ALL('New Lease'[Region]),'New Lease'[Sum of Admin_Fee_Delta],,DESC)

     

    I hope it would work.