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

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

Reply
Anonymous
Not applicable

Issues with RANKX measure when adding additional dimension column

My rank measure works well when only introducing the ranked items, but when I introduce a category for each item (in this example, it's a geographic region) the rank measure returns false ties and skips unused rank numbers.  See screenshot below, where the table on the left omits the geograhic location, and the table on the right includes it.

 

rankx.png

 

 

 

 

 

 

Generically, the rank and ranked measure look like this:

 

% RANK = 

RANKX (
    ALLSELECTED ( 'Dimension'[Item] ),
    CALCULATE ( [% Measure], ALLEXCEPT ( 'Dimension', 'Dimension'[Item] ) )
)

 

% Measure = 

DIVIDE (

SUM ( 'FACT_1'[COLUMN_1] ),
SUM ( 'FACT_2'[COLUMN_2] ),
BLANK()

)

 

Am I missing something to control for the additional category added to the visual?  My understanding is that this should only come into play if I wanted to rank within each category, but this rank measure is independent of the category.

 

NOTE: I'm trying to replicate within a dummy dataset to share but have not been successful yet.  

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Resolved this with the updated measure:

 

% RANK = 

RANKX (
    ALL ( 'Dimension' ),
    CALCULATE ( [% Measure], ALLEXCEPT ( 'Dimension', 'Dimension'[Item], 'Dimension'[Category]) )
)

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Resolved this with the updated measure:

 

% RANK = 

RANKX (
    ALL ( 'Dimension' ),
    CALCULATE ( [% Measure], ALLEXCEPT ( 'Dimension', 'Dimension'[Item], 'Dimension'[Category]) )
)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.