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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
JeanMariePBI
Helper I
Helper I

RankX using filter within column

Hello, I am relatively new to PBI.  I'm trying to add a measured column that will rank price points from highest to lowest within each product listed in the product Column.  The "Price Ranking"is the measure that I want to achieve:  I've tried ranking using a filter and variable but my dax logic continually has errors.   Any help is appreciated.  Thanks!

 
 
Product PricePrice Ranking
A-10225.01               1
A-10151.89               2
A-10129               3
A-10121.23               4
A-10120.27               5
A-10118.06               6
A-100202.97               1
A-100154.52               2
A-10067.47               3
A-150184.09               1
A-150133.61               2

 

 

2 ACCEPTED SOLUTIONS
parry2k
Super User
Super User

@JeanMariePBI check these posts

 

very well explained and you should be able to use it in your solution.

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



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

smpa01
Super User
Super User

@JeanMariePBI  ranking in subcategory with RANKX measure

 

_maxPrice = MAX('Table 1'[Price])

_rank = 
VAR _max= MAX('Table 1'[Product])
RETURN RANKX(FILTER(ALLSELECTED('Table 1'),'Table 1'[Product]=_max),[_maxPrice],,DESC)

 

smpa01_0-1633451792597.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

4 REPLIES 4
smpa01
Super User
Super User

@JeanMariePBI  ranking in subcategory with RANKX measure

 

_maxPrice = MAX('Table 1'[Price])

_rank = 
VAR _max= MAX('Table 1'[Product])
RETURN RANKX(FILTER(ALLSELECTED('Table 1'),'Table 1'[Product]=_max),[_maxPrice],,DESC)

 

smpa01_0-1633451792597.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Thank you so much!  It works great.   

parry2k
Super User
Super User

@JeanMariePBI check these posts

 

very well explained and you should be able to use it in your solution.

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



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.

Works perfectly!   Thank you so much!

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.