Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Rankx for two expressions

Hi,

 

request your guidance to overcome this issue,

i got a table showing dealer wise sales of state and district

i would like to create a measure which will show the rank of dealers based on state and district.  awaiting your advise

 

regards,

dsmitha

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi speedramps,

     

    Thank you very much for your guidance, it really helped me a lot

    double kudoz for you

     

    regards,

    dsmitha

7 Replies

  • Try this ...

     

    Rank by state district =
    VAR MyState = SELECTEDVALUE(Sales[State])
    VAR MyDistrict = SELECTEDVALUE(Sales[District])
    RETURN
    RANKX(
        FILTER(ALLSELECTED(Sales), Sales[State] = MyState && Sales[District] = MyDistrict),
        CALCULATE(SUM(Sales[Amount])),
        ,DESC,
        Dense
        )
     

    Thanks for reaching out for help.

    I put in a lot of effort to help you, now please quickly help me by giving kudos.

    Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

    If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

     

    One question per ticket please. If you need to extend your request then please raise a new ticket.

    You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi speedramps,

       

      Thank you very much for your guidance, it really helped me a lot

      double kudoz for you

       

      regards,

      dsmitha

  • hi there

    plz guide me how can i create ranks of categories on basis of both sales and profits at a same time and when i select sales it shoul show rank on basis of sales and when i select profit it should show rank on basis of profits

    plz guide

     

    • Ashish_Mathur's avatar
      Ashish_Mathur
      Super User

      Hi,

      Share the download link of the PBI file.  To avoid confusion/back and forth clarification seeking, please share only those tables in the file which are absolutely relevant to answer the question.