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
JoseCamp
Frequent Visitor

Repeat rank value through hierarchy levels

Hello community, 

 

I have a product table with different sizes and locations (Table on the left). I have created a ranking for this table based on Product name total sales (Table on the right)

JoseCamp_0-1615741088521.png

I can't figure out how to replicate the ranking value from the right table, through all the rows that have the same product name, as shown in the Ranking # on the yellow table. I need to to this so I can filter a set of information by ranking (Example the top 2), and be able to display the product information by size and location.

 

Any idead how to achieve this?

 

Thanks in advance! 

 

1 ACCEPTED SOLUTION

@JoseCamp  The file is attached below my signature:

Product Rank =
IF (
    ISINSCOPE ( Jose[Product name] ),
    VAR CurrentProduct =
        SELECTEDVALUE ( Jose[Product Name] )
    VAR TotalSellAtCurrentProduct =
        CALCULATE (
            [Total Sell],
            Jose[Product name] = CurrentProduct,
            ALLEXCEPT ( Jose, Jose[Date] ),
            ALLSELECTED ( Jose[Date] )
        )
    VAR TotalSellEachProduct =
        CALCULATETABLE (
            ADDCOLUMNS ( VALUES ( Jose[Product Name] ), "@Total Sells", [Total Sell] ),
            ALLEXCEPT ( Jose, Jose[Date] ),
            ALLSELECTED ( Jose[Date] )
        )
    VAR RankCurrentSell =
        FILTER ( TotalSellEachProduct, [@Total Sells] >= TotalSellAtCurrentProduct )
    VAR Result =
        COUNTROWS ( RankCurrentSell )
    RETURN
        Result
)

1.png2.png

View solution in original post

3 REPLIES 3
JoseCamp
Frequent Visitor

@AntrikshSharma thanks for your answer! I should have been a bit more specific about my request! (My bad) The product table has selling dates and I need the ranking to change based on the sales of a specific date range, or if a selection of a specific location (s), or a group (s) of products.

Product nameSizeLocationSellsDate
Prod1S1Loc1 $ 10.02021-03-10
Prod1S2Loc1 $ 20.02021-03-10
Prod1S1Loc3 $ 30.02021-03-12
Prod1S1Loc4 $ 20.02021-03-09
Prod2S3Loc1 $   5.02021-03-10
Prod2S4Loc4 $   8.02021-03-10
Prod3S5Loc2 $   4.02021-03-10
Prod3S5Loc3 $   3.02021-03-09
Prod3S5Loc4 $   9.02021-03-09

 

Thanks for your help!

@JoseCamp  The file is attached below my signature:

Product Rank =
IF (
    ISINSCOPE ( Jose[Product name] ),
    VAR CurrentProduct =
        SELECTEDVALUE ( Jose[Product Name] )
    VAR TotalSellAtCurrentProduct =
        CALCULATE (
            [Total Sell],
            Jose[Product name] = CurrentProduct,
            ALLEXCEPT ( Jose, Jose[Date] ),
            ALLSELECTED ( Jose[Date] )
        )
    VAR TotalSellEachProduct =
        CALCULATETABLE (
            ADDCOLUMNS ( VALUES ( Jose[Product Name] ), "@Total Sells", [Total Sell] ),
            ALLEXCEPT ( Jose, Jose[Date] ),
            ALLSELECTED ( Jose[Date] )
        )
    VAR RankCurrentSell =
        FILTER ( TotalSellEachProduct, [@Total Sells] >= TotalSellAtCurrentProduct )
    VAR Result =
        COUNTROWS ( RankCurrentSell )
    RETURN
        Result
)

1.png2.png

AntrikshSharma
Community Champion
Community Champion

@JoseCamp  Try this:

 

Product Rank = 
VAR CurrentProduct = Jose[Product Name]
VAR TotalSellAtCurrentProduct =
    CALCULATE ( SUM ( Jose[Sells] ), ALLEXCEPT ( Jose, Jose[Product Name] ) )
VAR TotalSellEachProduct =
    ADDCOLUMNS (
        VALUES ( Jose[Product Name] ),
        "@Total Sells", CALCULATE ( SUM ( Jose[Sells] ), ALLEXCEPT ( Jose, Jose[Product Name] ) )
    )
VAR RankCurrentSell =
    FILTER ( TotalSellEachProduct, [@Total Sells] >= TotalSellAtCurrentProduct )
VAR Result =
    COUNTROWS ( RankCurrentSell )
RETURN
    Result

 

1.png

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.

Top Solution Authors