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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Anonymous
Not applicable

Fixed ranking of percentage measure

Hi all,

 

I have a table of data like this:

 

1.PNG

 

I need to be able to show results by client & country, filtering by Year & Version, which then shows the GP % of Revenue (already created as a measure called GP %) ranked against all other client country combinations for the chosen Year & Version. So the output would look something like this:

 

2.PNG

Does anyone have any ideas? Thanks for looking!

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create rank using Column or measure like DAX below.

 

Column1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=EARLIER(Table1[Country])&&Table1[Year & Version]=EARLIER(Table1[Year & Version])),Table1[GP],,DESC, Skip)
 
Measure1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=MAX(Table1[Country])&&Table1[Year & Version]=MAX(Table1[Year & Version])),MAX(Table1[GP]),,DESC, Skip)

You can go through the link https://docs.microsoft.com/zh-cn/dax/rankx-function-dax to learn more about the RANKX .

 

Best Regards,

Amy

 

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

2 REPLIES 2
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create rank using Column or measure like DAX below.

 

Column1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=EARLIER(Table1[Country])&&Table1[Year & Version]=EARLIER(Table1[Year & Version])),Table1[GP],,DESC, Skip)
 
Measure1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=MAX(Table1[Country])&&Table1[Year & Version]=MAX(Table1[Year & Version])),MAX(Table1[GP]),,DESC, Skip)

You can go through the link https://docs.microsoft.com/zh-cn/dax/rankx-function-dax to learn more about the RANKX .

 

Best Regards,

Amy

 

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

 

parry2k
Super User
Super User

@Anonymous I believe this post expalains Rank in detail and will get you going.



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.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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