Forum Discussion

SriGaG's avatar
SriGaG
Frequent Visitor
3 years ago
Solved

Ranking based on two dimensions

Hi Experts

 

I have an issue in ranking

 

I have a table which contains three columns. first is Reportname, second is userid, third is count of views. What i need is i neeed to rank the user report by count of views. I have tried so hard and i cannot achieve it.. Can anyone help me? The below is the snapshot of my requirement. Im using a direct query environment. so i cannot use functions suc as earlier.

 

 

reportusercount of viewsrequired rank
R1U134
R1U243
R1U325
R1U452
R1U671
R1U826
R2U161
R2U323
R2U432

 

 

ranking method need to be unique ranking. Can anyone help me. This is little bit urgent

 

 

 

  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi SriGaG ,

    Please try:

    ranking = RANKX(FILTER(ALL('Table1'),'Table1'[report]=MAX('Table1'[report])),[count of views],,DESC,Dense)

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

4 Replies

  • Hi,

    Assuming Count of value is a measure, write this measure

    Measure = rankx(all(Data[user]),[Count of value])

    Hope this helps.

    • SriGaG's avatar
      SriGaG
      Frequent Visitor

      Thank you ashish for the prompt response . I have tried this Calc so many times. But not givin the desired outcome . I have several filters applied for the visual too. But this isn't working . 

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi SriGaG ,

    Please try:

    ranking = RANKX(FILTER(ALL('Table1'),'Table1'[report]=MAX('Table1'[report])),[count of views],,DESC,Dense)

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly --  How to provide sample data in the Power BI Forum