The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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:
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.
Solved! Go to Solution.
@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.
@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.