This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi All,
I want to know how to use DAX to rank like this?
| Country | Customer | Sales Amount | Ranking |
| CN | ABC | 200 | 4 |
| CN | DEF | 100 | 5 |
| CN | GHI | 300 | 3 |
| CN | JLK | 400 | 2 |
| CN | MNO | 500 | 1 |
| US | ABC | 500 | 1 |
| US | DEF | 400 | 2 |
| US | GHI | 300 | 3 |
| US | JLK | 200 | 4 |
| US | MNO | 100 | 5 |
| JP | ABC | 200 | 4 |
| JP | DEF | 100 | 5 |
| JP | GHI | 300 | 3 |
| JP | JLK | 400 | 2 |
| JP | MNO | 500 | 1 |
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
Solved! Go to 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.
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
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
Hi @Jihwan_Kim ,
Thank you for your support. However, when I apply it into my PBI, it show error and can't run correctly.
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.
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
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 27 | |
| 23 | |
| 19 |