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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi everyone!
I need some help with this issue,
I have a table with Location and ID and I want to reset the rankx when both values change.
I tried to use this formula but it's not working:
Rank = RANKX(Filter('Table','Table'[Location]=EARLIER('Table'[Location])&&'Table'[ID]=EARLIER('Table'[ID])),ID,,DESC,DENSE)
Solved! Go to Solution.
Hi @Stephy_99 ,
Please try below steps:
Add a new column with below dax formula
Rank =
VAR cur_location = 'Table'[Location]
VAR tmp =
FILTER ( ALL ( 'Table' ), 'Table'[Location] = cur_location )
RETURN
RANKX ( tmp, [ID],, ASC, DENSE )
Please refer the attached .pbix file.
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Stephy_99 ,
Please try below steps:
Add a new column with below dax formula
Rank =
VAR cur_location = 'Table'[Location]
VAR tmp =
FILTER ( ALL ( 'Table' ), 'Table'[Location] = cur_location )
RETURN
RANKX ( tmp, [ID],, ASC, DENSE )
Please refer the attached .pbix file.
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Stephy_99 , Try like
Rank = RANKX(Filter('Table','Table'[Location]=EARLIER('Table'[Location])),[ID],,DESC,DENSE)
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 45 | |
| 36 | |
| 28 | |
| 23 |
| User | Count |
|---|---|
| 135 | |
| 121 | |
| 58 | |
| 40 | |
| 32 |