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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
rajatagarwal93
New Member

Create a Rank column/field based on a filter.

Hi 

 

I am trying to create a column named "Rank" in a table (see example below). I am okay with either DAX or M query. I want to Partition by Visit ID, and Order by Join Time in ascending order. It should only rank when the "Role" is Doctor else rank 0. Also, if its the same participant ID in the same visit ID then the rank should be same. For ex. Participant "a" is present twice in Visit ID "1" so the doctor gets the rank 1 in both the rows.

 

Join timeVisit IDParticipant IDRoleRank
01/02/20241aDoctor1
02/02/20241bPatient0
03/02/20241aDoctor1
04/02/20241zDoctor2
05/02/20242cDoctor1
06/02/20242dPatient0
07/02/20243aDoctor1
08/02/20244cPatient0
09/02/20245aDoctor1
10/02/20245eDoctor2
11/02/20245fPatient0

 

 

 

Any help would be greatly appreciated.

Thanks

 

1 ACCEPTED SOLUTION
govindarajan_d
Super User
Super User

Hi @rajatagarwal93 ,

 

Can you try this measure: 

The data is summarized to find the minimum date for each participant id within a Visit ID

Then the min date is used to order by in the RANK DAX function to calculate the ranking. 

 

 

 

 

RankDoctor =
VAR __Summarized =
    SUMMARIZE (
        FILTER ( ALL ( RankTable ), RankTable[Role] = "Doctor" ),
        RankTable[Visit ID],
        RankTable[Participant ID],
        "MinDate", MIN ( RankTable[Join time] )
    )
VAR __Rank =
    RANK (
        DENSE,
        __Summarized,
        ORDERBY ( [MinDate], ASC ),
        DEFAULT,
        PARTITIONBY ( RankTable[Visit ID] )
    )
RETURN
    IF ( SELECTEDVALUE ( RankTable[Role] ) = "Doctor", __Rank, 0 )

 

 

 

 

Rank column is from your question. I had it to refer if my measure was correct. 
RankDoctor is the measure from above formula (the last column) and it matches with the output you had given. 

govindarajan_d_0-1708139108845.png

 

 

 

View solution in original post

2 REPLIES 2
govindarajan_d
Super User
Super User

Hi @rajatagarwal93 ,

 

Can you try this measure: 

The data is summarized to find the minimum date for each participant id within a Visit ID

Then the min date is used to order by in the RANK DAX function to calculate the ranking. 

 

 

 

 

RankDoctor =
VAR __Summarized =
    SUMMARIZE (
        FILTER ( ALL ( RankTable ), RankTable[Role] = "Doctor" ),
        RankTable[Visit ID],
        RankTable[Participant ID],
        "MinDate", MIN ( RankTable[Join time] )
    )
VAR __Rank =
    RANK (
        DENSE,
        __Summarized,
        ORDERBY ( [MinDate], ASC ),
        DEFAULT,
        PARTITIONBY ( RankTable[Visit ID] )
    )
RETURN
    IF ( SELECTEDVALUE ( RankTable[Role] ) = "Doctor", __Rank, 0 )

 

 

 

 

Rank column is from your question. I had it to refer if my measure was correct. 
RankDoctor is the measure from above formula (the last column) and it matches with the output you had given. 

govindarajan_d_0-1708139108845.png

 

 

 

It worked. Thanks for such a quick response.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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