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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JBrunetUdec
Frequent Visitor

Can't find a way to rank rows based on a measure

Hey! First time posting here. I'm having an issue and I've been trying to solve it for the past three days. I have a table ('ID') with a single column ('ID'). This has the ID's of different assets (It is in black just in case). I also have a measure ([SCORE]) that assigns a score to each ID. What I need is a measure that returns the ranking of each asset, where the one with the higher number is 1°. I tried two different measures. The first one (RANK1) tries to count how many assets have a score equal or higher. The second one uses RANKX. Here are the measures:

 

RANK1 =
VAR ACTUAL = [SCORE]
RETURN
CALCULATE(
COUNTROWS(ID),
FILTER(ALL(ID),([SCORE])>=ACTUAL)
)

 

RANK2 = RANKX(ALL(ID),[SCORE],,DESC,Skip)

Here are the results:

 

JBrunetUdec_0-1697133706215.png

 

What baffles me is that some ranks are repeated, when no score is equal to another. I've tried a lot of things without results. What can I do? Roast me if necessary, still new to PowerBI.

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@JBrunetUdec I think it is a precision issue, try using new RANK function:

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@JBrunetUdec I think it is a precision issue, try using new RANK function:

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Worked perfectly! Thanks.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors