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
raymondpocher
Advocate III
Advocate III

Dynamically group top n to one category and the rest to "other"

Hello community,

 

I want to dynamically group the top n values into (a) category a = "top n" and (b) all the rest into a category b = "other".

Hence when displaying a bar chart it should always have 2 categories. A filter shoult be there for me to select the top 5, 10, 15, 20 etc. 

 

In many articles our colleges talk about getting the top n products and grouping the rest into the catgory other. The thing is, it always shows the single product names. Instead I would like to have the top n products combined into one category.

https://goodly.co.in/top-n-and-others-power-bi/ 

 

Anyone a clou or an article about that topic?

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Not sure if this will work but you could try doing it with a calculation group. Create a numeric parameter so that you can dynamically select how many products to include in the top category, and then create calculation items like

Top N =
VAR TopNValue = [Top N Value]
VAR TopNWithValues =
    TOPN (
        TopNValue,
        ADDCOLUMNS (
            ALLSELECTED ( 'Product'[Product Key] ),
            "@value", SELECTEDMEASURE ()
        ),
        [@value]
    )
VAR Result =
    SUMX ( TopNWithValues, [@value] )
RETURN
    Result

and

Others =
VAR TopNValue = [Top N Value]
VAR TopNWithValues =
    TOPN (
        TopNValue,
        ADDCOLUMNS (
            ALLSELECTED ( 'Product'[Product Key] ),
            "@value", SELECTEDMEASURE ()
        ),
        [@value]
    )
VAR TopNTotal =
    SUMX ( TopNWithValues, [@value] )
VAR TotalValue =
    CALCULATE ( SELECTEDMEASURE (), ALLSELECTED ( 'Product'[Product Key] ) )
RETURN
    TotalValue - TopNTotal

View solution in original post

2 REPLIES 2
Padycosmos
Solution Sage
Solution Sage
johnt75
Super User
Super User

Not sure if this will work but you could try doing it with a calculation group. Create a numeric parameter so that you can dynamically select how many products to include in the top category, and then create calculation items like

Top N =
VAR TopNValue = [Top N Value]
VAR TopNWithValues =
    TOPN (
        TopNValue,
        ADDCOLUMNS (
            ALLSELECTED ( 'Product'[Product Key] ),
            "@value", SELECTEDMEASURE ()
        ),
        [@value]
    )
VAR Result =
    SUMX ( TopNWithValues, [@value] )
RETURN
    Result

and

Others =
VAR TopNValue = [Top N Value]
VAR TopNWithValues =
    TOPN (
        TopNValue,
        ADDCOLUMNS (
            ALLSELECTED ( 'Product'[Product Key] ),
            "@value", SELECTEDMEASURE ()
        ),
        [@value]
    )
VAR TopNTotal =
    SUMX ( TopNWithValues, [@value] )
VAR TotalValue =
    CALCULATE ( SELECTEDMEASURE (), ALLSELECTED ( 'Product'[Product Key] ) )
RETURN
    TotalValue - TopNTotal

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.