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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
cerebro
Helper I
Helper I

Show top 5 values, sum top 5 vales, sum others, sum totals

Hi everybody,

 

i would like to create the following table in Power BI:qPQb2
the problem is that it's either the top 5 and their sum or top5 agreggated, others and the totals. Is there any possibility to make any structure with subtotals work? I have some sample data but i am not sure how to upload it here.

Thanks in advance

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @cerebro ,

 

You can create a seperate table by entering data as follows.

3.png

Then create a calculated table

Table 2 = UNION(SELECTCOLUMNS(FILTER('Table',[topn]<=5),"Category",[Customer]),'Table (2)')

2.png

Create the measure

Values = 
IF (
    MAX ( 'Table 2'[Category] ) = "sum of top5",
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [topn] <= 5 ) ),
    IF (
        MAX ( 'Table 2'[Category] ) = "others",
        CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [topn] > 5 ) ),
        IF (
            MAX ( 'Table 2'[Category] ) = "total",
            CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table' ) ),
            CALCULATE (
                SUM ( 'Table'[Value] ),
                FILTER ( 'Table', [Customer] = MAX ( 'Table 2'[Category] ) )
            )
        )
    )
)

4.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @cerebro ,

 

You can create a seperate table by entering data as follows.

3.png

Then create a calculated table

Table 2 = UNION(SELECTCOLUMNS(FILTER('Table',[topn]<=5),"Category",[Customer]),'Table (2)')

2.png

Create the measure

Values = 
IF (
    MAX ( 'Table 2'[Category] ) = "sum of top5",
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [topn] <= 5 ) ),
    IF (
        MAX ( 'Table 2'[Category] ) = "others",
        CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [topn] > 5 ) ),
        IF (
            MAX ( 'Table 2'[Category] ) = "total",
            CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table' ) ),
            CALCULATE (
                SUM ( 'Table'[Value] ),
                FILTER ( 'Table', [Customer] = MAX ( 'Table 2'[Category] ) )
            )
        )
    )
)

4.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

thank you very much for this solution!

amitchandak
Super User
Super User

@cerebro , Try like

 

https://www.youtube.com/watch?v=UAnylK9bm1I

 

TOPN with other

 

https://www.proserveit.com/blog/ms-power-bi-topn-and-other

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

i got everything except for the the sum of top 5

because i cant add it as a line to the column with customer names.

I created a column that indicates the names of top 5 customers and every other customer receives the "other" lable. But i dont know how to create a top 5 sum in the same table 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.