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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Totoro
New Member

Top N filter plus one specific item

Hi

The data and desired outcome (top 3 in rank plus colour=pink if it is not in tope 3) are as below:

data.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

outcome.png

 

 

 

 

 

 

 

 

The measure Rank = RANKX(ALL(TableData[Colour]),CALCULATE(SUM(TableData[Stock]))) seems ok but the other measure

Top3+Pink = IF([Rank]<4 ||'TableData'[Colour] = "Pink",1,0) doesn't work.  Any advice please.  Thanks.

 

 

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

6 REPLIES 6
tamerj1
Super User
Super User

Hi @Totoro 
Please refer to attached sample file with the solution

2.png

Top 3 Stock = 
VAR T1 = 
    CALCULATETABLE (
        VALUES ( Data[Colour] ), 
        ALLEXCEPT ( Data, Data[Category] ) 
    )
VAR T2 = TOPN ( 3, T1, [Total Stock] )
VAR T3 = UNION ( T2, { "Pink" } )
VAR T4 = FILTER ( Data, Data[Colour] IN T3 )
RETURN 
    SUMX ( T4, [Total Stock] )

 

 

Many thanks tamerj1 for the code and pbix file! Should have posted the question earlier I have been struggling with it for weeks.

 

wdx223_Daniel
Super User
Super User

wdx223_Daniel_0-1677573570233.png

 

It works! Brilliant! Thanks wdx223_Daniel.

 

Regards

Totoro

andhiii079845
Solution Sage
Solution Sage

I think this can help you:

https://community.powerbi.com/t5/Desktop/Rankx-with-filter/m-p/63457





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks andhiii079845 for the reference.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.