Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi All,
I have a list of sales orders and invoice values. I put them in a table to get a summary by part number:
When I try to use RANKX to rank those values it only works if I have the data un-summarised, so for each individual order that makes up the number in the invooice value column. How do I rank these summarised values so I cane se 1,2,3,4 etc descending.
This is what I have tried:
sales amt rank = RANKX('Final Sales data','Final Sales data'[Invoiced Sales],,DESC)and it give me this:
I need a rank for each summed value by material number.
Thanks,
Solved! Go to Solution.
Hi @bptyates
You can create a measure with below DAX
Rank =
RANKX (
ALL ( 'Final Sales data'[Material number] ),
CALCULATE ( SUM ( 'Final Sales data'[Invoiced Sales] ) ),
,
DESC
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Thank you for the assistance.
Hi @bptyates
You can create a measure with below DAX
Rank =
RANKX (
ALL ( 'Final Sales data'[Material number] ),
CALCULATE ( SUM ( 'Final Sales data'[Invoiced Sales] ) ),
,
DESC
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 43 | |
| 35 | |
| 30 |