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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bptyates
Frequent Visitor

Ranking values

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:

bptyates_0-1659521903070.png

 

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:

bptyates_1-1659522237602.png

I need a rank for each summed value by material number.

 

Thanks, 

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

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.

View solution in original post

2 REPLIES 2
bptyates
Frequent Visitor

Thank you for the assistance.

v-jingzhang
Community Support
Community Support

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.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.