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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

Displaying the top N% of a category

Hi, 

I'm trying to write a measure where i'd be able to display the top N% of a category, possible this would dynamic so would change upon changing of the slicer. Is this possible? 

 

Any help would be very much appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Anonymous ,

 

The idea is to first calculate the sales ranking, and then take 20% of the ranking to display.

 

Sample data

vstephenmsft_0-1641797043397.png

 

Here's my solution.

1.Create a rank measure.

RANK = 
RANKX (
    FILTER ( ALLSELECTED ( 'Table' ), [Date] = MAX ( 'Table'[Date] ) ),
    CALCULATE ( SUM ( 'Table'[Sales] ) ),
    ,
    DESC,
    DENSE
)

You can get a sort grouped by year and month.

vstephenmsft_1-1641797081249.png

 

2.Create a flag measure.

FLAG = 
VAR _20 =
    ROUNDDOWN (
        MAXX (
            FILTER ( ALLSELECTED ( 'Table' ), [Date] = MAX ( 'Table'[Date] ) ),
            [RANK]
        ) * 0.2,
        0
    )
RETURN
    IF ( [RANK] <= _20, 1 )

Put that measure into filters, set show items when the value is 1.

vstephenmsft_2-1641797178242.png

 

You can filter year month in the slicer.

vstephenmsft_3-1641797248012.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
Anonymous
Not applicable

Hi @VahidDM,

 

Many thanks for your help. please see an image of some of the data. I'd be looking to see the top 20% of category of units sold changing each month. 

 

jameswhittlehal_0-1641431433553.png

 

Anonymous
Not applicable

Hi  @Anonymous ,

 

The idea is to first calculate the sales ranking, and then take 20% of the ranking to display.

 

Sample data

vstephenmsft_0-1641797043397.png

 

Here's my solution.

1.Create a rank measure.

RANK = 
RANKX (
    FILTER ( ALLSELECTED ( 'Table' ), [Date] = MAX ( 'Table'[Date] ) ),
    CALCULATE ( SUM ( 'Table'[Sales] ) ),
    ,
    DESC,
    DENSE
)

You can get a sort grouped by year and month.

vstephenmsft_1-1641797081249.png

 

2.Create a flag measure.

FLAG = 
VAR _20 =
    ROUNDDOWN (
        MAXX (
            FILTER ( ALLSELECTED ( 'Table' ), [Date] = MAX ( 'Table'[Date] ) ),
            [RANK]
        ) * 0.2,
        0
    )
RETURN
    IF ( [RANK] <= _20, 1 )

Put that measure into filters, set show items when the value is 1.

vstephenmsft_2-1641797178242.png

 

You can filter year month in the slicer.

vstephenmsft_3-1641797248012.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.

Hi @Anonymous 

 

Can you post sample data as text and expected output?
Not enough information to go on;

please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
4. Relation between your tables

Appreciate your Kudos!!
LinkedIn:www.linkedin.com/in/vahid-dm/

VahidDM
Super User
Super User

Hi @Anonymous 

 

Can you provide a sample of your data and expected result in a text format?

 

BTW, check these links:

https://community.powerbi.com/t5/Desktop/Display-Top-N-by-Category-and-Sub-Category/m-p/2121269

https://community.powerbi.com/t5/DAX-Commands-and-Tips/Show-Top-N-Rank-Category/m-p/2136606

https://community.powerbi.com/t5/Desktop/Top-N-Categories-within-the-Nth-Category/m-p/2175433

https://community.powerbi.com/t5/Desktop/Top-N-states-within-TOP-N-category/m-p/1828635

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.