Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register 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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |