Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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.
Thanks in advance!
Solved! Go to Solution.
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
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!!
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
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |