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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

RANKX function with ALL

Hi all,

 

I need your help on this please:

I have a Power BI model that contains the following two tables:
Sales(Sales_ID, sales_date, sales_amount, CustomerID)
Customer(CustomerID, First_name, Last_name)
There is a relationship between Sales and Customer.
I need to create a measure to rank the customers based on their total sales amount.

Which DAX formula should I use?

Is this the right formula: RANKX(ALL(customer), SUMX(RELATEDTABLE(Sales), [Sales_amount])) ?

 

Many thanks.

 

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous 

You may try below measure:

Measure =
RANKX ( ALL ( Customer ), CALCULATE ( SUM ( Sales[sales_amount] ) ) )

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable


@Anonymous wrote:

Hi all,

 

I need your help on this please:

I have a Power BI model that contains the following two tables:
Sales(Sales_ID, sales_date, sales_amount, CustomerID)
Customer(CustomerID, First_name, Last_name)
There is a relationship between Sales and Customer.
I need to create a measure to rank the customers based on their total sales amount.

Which DAX formula should I use?

Is this the right formula: RANKX(ALL(customer), SUMX(RELATEDTABLE(Sales), [Sales_amount])) ?

 

Many thanks.

 


I think correct ans is RANKX(ALL(Sales), SUMX(RELATEDTABLE(Customer), [Sales_amount])).

 

Bez question is asking to create a measure in Sales Table. Correct me If I am wrong?

v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous 

You may try below measure:

Measure =
RANKX ( ALL ( Customer ), CALCULATE ( SUM ( Sales[sales_amount] ) ) )

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
mussaenda
Super User
Super User

You may refer at this tutorial

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors