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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
hixkim
Frequent 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 to highest based on part number. Since we can get pricing at different times during the week I created a Year-Week column to base this off of. I added a rank column below of how I would like it to work. I highlighted the columns in blue that I believe are necessary to accomplish this, the rest are just for context. 

 

hixkim_1-1633094366840.png

 

Thanks in advance! 

 

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

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

View solution in original post

3 REPLIES 3
themistoklis
Community Champion
Community Champion

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

You're amazing. Thank you!!

selimovd
Super User
Super User

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
 

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.