Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have the following in which I have to do dynamic Ranking.
First, it should see the region and then based on Total sales
When the region changes, it should start again from 1, (Similar to partition by in SQL).
I'm also attaching the dax function which I tried:
| UserID | Region | Total Sales | Dynamic_Rank |
| 1 | North | 2000 | 2 |
| 2 | North | 3000 | 1 |
| 3 | North | 3000 | 1 |
| 4 | South | 4000 | 1 |
| 5 | South | 4000 | 1 |
| 6 | South | 3500 | 2 |
Solved! Go to Solution.
DAX formula:
Dynamic_Rank =
RANKX(
FILTER(
'YourTableName',
'YourTableName'[Region] = EARLIER('YourTableName'[Region])
),
'YourTableName'[Total Sales],
,
DESC,
Dense
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Hi Everyone
I want to Rank on basis of amount and also of new month starts then it should rank on basis of amount.
Month Amount Rank
Jan 234 1
Jan 200 2
Jan 100 3
Feb 400 1
Feb 149 2
like this I want , as I have tried everything but it is not coming please help.
Hi @Kedar_Pande ,
Thanks for the Response. This works.
But is this not achievable through RANK function instead of RANKX function.
We have to use RANKX as we have to iterate in the table.
If this helped please Solution mark the original answer
DAX formula:
Dynamic_Rank =
RANKX(
FILTER(
'YourTableName',
'YourTableName'[Region] = EARLIER('YourTableName'[Region])
),
'YourTableName'[Total Sales],
,
DESC,
Dense
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 54 | |
| 40 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 94 | |
| 83 | |
| 32 | |
| 32 | |
| 24 |