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

Help with DAX to rank the duplicates.

Hello all,

 

dp1.PNG

I have a table similar to this and I have listed the desired rank column. I need a calculated column to rank based on the dates eventhough it has duplicates.

Also the assignment numbers wouldn't be in an increasing order as shown here.

 

Looking forward to your help.

 

Thanks

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

With DAX, I can't rank duplicate data based on duplicate data. What I can do is to use a column of non duplicate data to rank (unique row identifier is essential here). Try to create a calculated column in DAX .If this is not the result you want, you could submit your idea to help improve power Bi.

 

rank = 
RANKX (
    FILTER (
        'Table',
        EARLIER ( 'Table'[id] ) = 'Table'[id]
    ),
    'Table'[assign no.],
    ,
    ASC
)

 

rank_duplicate.PNG

 

Best Regards,

Liang 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

With DAX, I can't rank duplicate data based on duplicate data. What I can do is to use a column of non duplicate data to rank (unique row identifier is essential here). Try to create a calculated column in DAX .If this is not the result you want, you could submit your idea to help improve power Bi.

 

rank = 
RANKX (
    FILTER (
        'Table',
        EARLIER ( 'Table'[id] ) = 'Table'[id]
    ),
    'Table'[assign no.],
    ,
    ASC
)

 

rank_duplicate.PNG

 

Best Regards,

Liang 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.