Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
KH_Mike
Helper III
Helper III

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

 

 

1 ACCEPTED SOLUTION

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.

 

Picture3.png

 

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

 

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


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @KH_Mike 

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

 

Picture2.png

 

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

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


Go to My LinkedIn Page


Hi @Jihwan_Kim ,

 

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

 

Untitled.png

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.

 

Picture3.png

 

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

 

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


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.