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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
julien-rivley
Helper I
Helper I

Performance and IF statement

Hi,

 

I have a surprising performance issue in DAX.

I have a slow measure that I use to calculate future expiry of product per month(based on current stock by expiry month and sales forecast). This measure takes about 10 seconds to be calculated for the next 24 months. For many "Product-Future Month", this measure is not required as no product are expirying on the specific month.


I therefore tried to put some IF statement in the measure to prevent this slow measure to run if no stock is expirying in the context month.

My measure is of that type:
"optimized measure" = IF("test measure"=0,0,"slow measure")


According to the performance I noticed, even if "test measure"=0, PowerBI is still calculating the slow measure! As I only need to calculate "slow measure" for 5% of my data, it's a significant loss of performance...

Would anyone be aware of this issue and have idea how to work around it?

Thanks!

Julien

 

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

 
Because measures are calculated on the fly, the [test measure] expression is calculated twice. [test measure] is first calculated for the condition check and then for the true condition expression.
Instead of calculating the same expression multiple times, you can store the resulting measure value in a variable. You can use a variable reference wherever required.
 
optimized measure =
  var test_measure = [test measure]
  return IF(test_measure=0,0,[slow measure])
 
For more details, please refer to this document:https://www.sqlbi.com/articles/optimizing-if-conditions-using-variables/ 
 
Best Regards,
Liang
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

1 REPLY 1
V-lianl-msft
Community Support
Community Support

 
Because measures are calculated on the fly, the [test measure] expression is calculated twice. [test measure] is first calculated for the condition check and then for the true condition expression.
Instead of calculating the same expression multiple times, you can store the resulting measure value in a variable. You can use a variable reference wherever required.
 
optimized measure =
  var test_measure = [test measure]
  return IF(test_measure=0,0,[slow measure])
 
For more details, please refer to this document:https://www.sqlbi.com/articles/optimizing-if-conditions-using-variables/ 
 
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors