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
bhmiller89
Helper V
Helper V

Top 10%

I know how to use the Top N filter, but the ask is for the top 10% of values. We have a large dataset of tickets, each ticket has a "duration" value. We want to see the 10% of those values in a table

 

Any help on how to filter that is appreciated 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@bhmiller89 

Top 10% of the tickets and their duration.

Top 10% Duration = 

VAR T10 =
    TOPN(
        ROUNDUP(
            COUNTROWS(ALL('Table'))*0.1,0), 
            ALL('Table'),
            [Total Duration], 
            DESC 
        )
RETURN
    CALCULATE(
        [Total Duration],
        KEEPFILTERS(T10)
    )

 

Fowmy_0-1597150064142.png

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

4 REPLIES 4
Fowmy
Super User
Super User

@bhmiller89 

Top 10% of the tickets and their duration.

Top 10% Duration = 

VAR T10 =
    TOPN(
        ROUNDUP(
            COUNTROWS(ALL('Table'))*0.1,0), 
            ALL('Table'),
            [Total Duration], 
            DESC 
        )
RETURN
    CALCULATE(
        [Total Duration],
        KEEPFILTERS(T10)
    )

 

Fowmy_0-1597150064142.png

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

AntrikshSharma
Community Champion
Community Champion

You could try something like this:

Top 10% Customer =
VAR Num =
    INT ( COUNTROWS ( Customer ) * 0.1 )
VAR Top10Customer =
    TOPN ( Num, Customer, [Total Sales], ASC )
RETURN
    Top10Customer
AllisonKennedy
Super User
Super User

You could create a measure to calculate the percent of values and filter for within top 10%?

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

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.