Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Ranking values within groups

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:

RankingInGroup.JPG

 

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:

Source data file

pbix file

 

thanks in advance for help. 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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
)

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.