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
da26
Frequent Visitor

how to show the ranking of data and removing the ties using RANKX function

Hi!

 

Can someone help me how to display the ranking of data based on the count?

And what if there are ties, how to display their ranking? I've already tried the RANKX function but it only displayed Rank 1 on all the data.

Capture.PNG

Thank you in advance. 🙂

8 REPLIES 8
CheenuSing
Community Champion
Community Champion

Hi @da26

 

Try the following

 

1. Create a measure called sumCount = sum( yourtable[CountofHN] )

2. Create a measure called 

    Rank  =

     IF (
HASONEVALUE ( yourtable[Diagnosis] ),
RANKX ( ALL ( yourtable[Diagnosis] ,yourtable[CountofHN]),[sumCount],,desc,dense)
)

 

 

If this works please accept this as a solution and also give KUDOS.

 

Cheers

 

CheenuSing

 

Did I answer your question? Mark my post as a solution and also give KUDOS !

Proud to be a Datanaut!
Sean
Community Champion
Community Champion

Post your Measure formula

da26
Frequent Visitor

Capture2.PNG

Sean
Community Champion
Community Champion

Rank =
IF (
    HASONEVALUE ( IPD_CurrentOpenStatus[Diagnosis] ),
    RANKX (
        ALL ( IPD_CurrentOpenStatus[Diagnosis] ),
        CALCULATE ( COUNTA ( IPD_CurrentOpenStatus[HN] ) ),,
        ASC,
        DENSE
    )
)

@da26   How about now?

da26
Frequent Visitor

Hi @Sean

 

 

Still error. I'm sorry.

But thank you so much for immediate response. 😉

Sean
Community Champion
Community Champion

How is you data organized - post some sample of what the table looks like?

da26
Frequent Visitor

Hi @Sean

 

I already found the solution in ranking. 🙂

But what I am trying to know now is there any way to remove the ties in ranking? As you see here, when there is a tie, the ranking was just like this.

 

Capture4.PNG

Thank you again. 🙂

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.