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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.