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
Hi All,
I need to have a rank of the values in my table as a new column. I have read few topics here but non of the solutions works for my case.
I have a column with Dates and the second clumn with Departments. What I need to get is the third columns with dates rank within departments as presented below on the screen:
The column 'Rank column that I want to achieve' is my goal. The 'Sorting_rank' is what I did but this is not exacly what I want,
Please help with fixing my DAX.
Attaching my pbix and data sourc files:
thanks in advance for help.
Solved! Go to Solution.
Just found a solution. DAX that does exacly what I wanted is:
Correct_Rank = RANKX (
FILTER (
'Sheet1';
Sheet1[Department] = EARLIER ( Sheet1[Department] )
);
Sheet1[Date];
; // leave value argument blank
ASC
)
Just found a solution. DAX that does exacly what I wanted is:
Correct_Rank = RANKX (
FILTER (
'Sheet1';
Sheet1[Department] = EARLIER ( Sheet1[Department] )
);
Sheet1[Date];
; // leave value argument blank
ASC
)
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 |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 100 | |
| 39 | |
| 29 | |
| 29 |