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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

Reply
Anonymous
Not applicable

DAX Perfromance Issue

Hi All,

 

I m using below measures to get Top 20% from vendor list.

Top_20%_Vendor = IF (ISBLANK ( [Invoiced] ),BLANK (),IF ([Ranking]< ( CALCULATE ( [Unique_Vendor], ALL ( f6MonthSpend ) ) * 0.2 ),[Invoiced],BLANK ()))

 

Then i m using below measure to get Top N  from above 20% list.

 

Ranking = IF (HASONEVALUE ( f6MonthSpend[Vendor Name] ),RANKX ( ALL ( f6MonthSpend[Vendor Name] ), [Invoiced],, DESC ))
TopN = SWITCH (TRUE (),[SelectedTOPNValue] = 0, [Invoiced],[Ranking] <= [SelectedTOPNValue], [Invoiced])

 

Issue : It takes around 1 min to get Top N .

 

image.png

 

2 REPLIES 2
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

Would you please try to use IF instead of switch in your TOPN?

 

 

TopN =
IF (
    [SelectedTOPNValue] = 0,
    [Invoiced],
    IF ( [Ranking] <= [SelectedTOPNValue], [Invoiced] )
)

 

 

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

 

Best Regards,

Dedmon Dai

lbendlin
Super User
Super User

please provide sample data in usable format

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.