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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Gazsim44
Helper III
Helper III

Remove Rank from Table

Hi All, 

 

I am struggling to remove a rank number from the total on a table. I have done this previously on other tables using HASONEVALUE but I dont know how, if possible to incorporate this in this measure.

 

 

Rank (Var to Prior Year) = 
IF(
    NOT( ISBLANK ([Var. to Prior Year EUR])),
    RANKX(
        FILTER(ALLSELECTED('PL Data'[Branch]), NOT( ISBLANK( [Var. to Prior Year EUR]))),
        [Var. to Prior Year EUR]
    )
)

 

 

Many thanks for any assistance,  

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Gazsim44 

 

Try this, 

 

Rank (Var to Prior Year) =
IF (
    HASONEVALUE ( 'PL Data'[Branch] ),
    RANKX (
        FILTER (
            ALLSELECTED ( 'PL Data'[Branch] ),
            NOT ( ISBLANK ( [Var. to Prior Year EUR] ) )
        ),
        [Var. to Prior Year EUR]
    )
)

 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

View solution in original post

2 REPLIES 2
Mariusz
Community Champion
Community Champion

Hi @Gazsim44 

 

Try this, 

 

Rank (Var to Prior Year) =
IF (
    HASONEVALUE ( 'PL Data'[Branch] ),
    RANKX (
        FILTER (
            ALLSELECTED ( 'PL Data'[Branch] ),
            NOT ( ISBLANK ( [Var. to Prior Year EUR] ) )
        ),
        [Var. to Prior Year EUR]
    )
)

 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

Many thanks @Mariusz that works perfectly!

 

All the best

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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