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
ibuhary
Helper I
Helper I

Remove RANKX from Total Row and Hide from Non Related Filters

Hello everyone,

 

I have the few Created Measures in my Database:

 

- StoreRank = RANKX(ALL(Table[Store Code],Table[Store Name]),CALCULATE(SUM(Table[Sales Volume])),,DESC)

 

 - ProductRank = RANKX(ALL(Table[Product Code],Table[Product Name]),CALCULATE(SUM(Table[Sales Volume])),,DESC)

 

I need to know:

 

1. When I Built a Table by Columns Store Code, Store Name, Sales Volume and Store Rank, how not to show any Ranks in the Total at the bottom, at the moment I get a number - 1 rank for the top store and also the total at the bottom also is given a Number - 1 Rank I want to make it blank in there.

 

2. If I populated a Table with Product details and chose to put in one column the Store Rank, it shows Rank - 1 for all the products, I want to make it Blank as well because I didnt chose any columns related to Store in this table.

1 ACCEPTED SOLUTION

@ibuhary

 

For your first question, you can use HASONEFILTER to detect totals/subtotals

 

Something like this

 

- StoreRank =
IF (
    HASONEFILTER ( Table[Store Code] ),
    RANKX (
        ALL ( Table[Store Code], Table[Store Name] ),
        CALCULATE ( SUM ( Table[Sales Volume] ) ),
        ,
        DESC
    )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
ibuhary
Helper I
Helper I

Did I ask something not logical to do in Power BI ?

@ibuhary

 

For your first question, you can use HASONEFILTER to detect totals/subtotals

 

Something like this

 

- StoreRank =
IF (
    HASONEFILTER ( Table[Store Code] ),
    RANKX (
        ALL ( Table[Store Code], Table[Store Name] ),
        CALCULATE ( SUM ( Table[Sales Volume] ) ),
        ,
        DESC
    )
)

Regards
Zubair

Please try my custom visuals

can you help me on another issue please ?

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.