Forum Discussion
hixkim
4 years agoFrequent Visitor
Rank based on multiple fields
Hello - hoping someone is able to help me out with this, I'm a little out of my depth. I think either a column or DAX would work for me. Ultimately I want to rank a vendor's weekly pricing lowest t...
- 4 years ago
Hello hixkim
Create a new calculated column with the following formula:
Sorting Column = RANKX ( FILTER ( 'Table', 'Table'[Year-Week] = EARLIER ( 'Table'[Year-Week] ) && 'Table'[Item Number] = EARLIER ( 'Table'[Item Number] ) ), 'Table'[Unit Cost], , ASC, DENSE )Workspace Attached
selimovd
4 years agoMost Valuable Professional
Hey hixkim ,
there is a great article about that from SQLBI. Check it out, I think it will solve your issue:
RANKX on multiple columns with DAX and Power BI - SQLBI
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic