Forum Discussion

KH_Mike's avatar
KH_Mike
Helper III
5 years ago
Solved

Rank Two Column

Hi All,

 

I want to know how to use DAX to rank like this?

 

CountryCustomerSales AmountRanking
CNABC2004
CNDEF1005
CNGHI3003
CNJLK4002
CNMNO5001
USABC5001
USDEF4002
USGHI3003
USJLK2004
USMNO1005
JPABC2004
JPDEF1005
JPGHI3003
JPJLK4002
JPMNO5001

 

Also, is it possible to only show top 10 Country by their total "Sales Amount" and their Top 1 Customer by their "Sales Amount" in a single table?

 

Thanks

 

 

  • Hi, KH_Mike 

    Thank you for your feedback.

    Do you want to create a column or a measure? 

    My formula above is, as I already mentioned above, for creating a new column.

    Please check the below for creating a new measure.

     

     

    Ranking Measure =
    RANKX (
    ALLEXCEPT ( 'Table', 'Table'[Country] ),
    CALCULATE ( SUM ( 'Table'[Sales Amount] ) ),
    ,
    DESC
    )
     
     

    Hi, My name is Jihwan Kim.


    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM

     

3 Replies

  • Hi, KH_Mike 

    Please check the below picture and the formula for creating a new column.

     

     

    Ranking CC =
    RANKX (
    FILTER ( 'Table', 'Table'[Country] = EARLIER ( 'Table'[Country] ) ),
    'Table'[Sales Amount],
    ,
    DESC
    )

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM

    • KH_Mike's avatar
      KH_Mike
      Helper III

      Hi Jihwan_Kim ,

       

      Thank you for your support. However, when I apply it into my PBI, it show error and can't run correctly.

       

      • Jihwan_Kim's avatar
        Jihwan_Kim
        Super User

        Hi, KH_Mike 

        Thank you for your feedback.

        Do you want to create a column or a measure? 

        My formula above is, as I already mentioned above, for creating a new column.

        Please check the below for creating a new measure.

         

         

        Ranking Measure =
        RANKX (
        ALLEXCEPT ( 'Table', 'Table'[Country] ),
        CALCULATE ( SUM ( 'Table'[Sales Amount] ) ),
        ,
        DESC
        )
         
         

        Hi, My name is Jihwan Kim.


        If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


        Linkedin: linkedin.com/in/jihwankim1975/

        Twitter: twitter.com/Jihwan_JHKIM