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

Join 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

Reply
Nick_Kalichava
Frequent Visitor

double RANKX ? HOW?

Hello, experts!

I need help with RANKX

In my table I rank groups by Quantity sold and by Amount sold. (So i have 2 rankings)

,Nick_Kalichava_0-1688563131780.png

measure 1 -
Rank_by_quantity =
RANKX(
ALL(Table[GROUP]),
CALCULATE(COUNTA(Table[Quanity]))
)
measure 2 - 
Rank_by_amount =
RANKX(
ALL(Table[GROUP]),
CALCULATE(SUM(Table[AMOUNT]))
)


BUT

as you can see in the picture below there are 4 groups ranked 4 in quantity

Nick_Kalichava_1-1688563523998.png

The task is,

First I rank groups by quantity sold, but if the ranking is the same it should rank my an amount.

1 ACCEPTED SOLUTION

Hi @Nick_Kalichava ,
If you want to rank based on multiple column you follow this blog .
https://www.sqlbi.com/articles/rankx-on-multiple-columns-with-dax-and-power-bi/
Hope this was helpful.
Thanks,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
pratyashasamal
Memorable Member
Memorable Member

Hi @Nick_Kalichava ,
Try to use Dense in the Rankx function.
For example :-

Rank_by_quantity =
RANKX(
ALL(Table[GROUP]),
CALCULATE(COUNTA(Table[Quanity])) ,DESC,dense)
Thanks,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Please,

read the description.
my task is to rank by 2 different ranks in one column.

Hi @Nick_Kalichava ,
If you want to rank based on multiple column you follow this blog .
https://www.sqlbi.com/articles/rankx-on-multiple-columns-with-dax-and-power-bi/
Hope this was helpful.
Thanks,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.