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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Priya2007
Frequent Visitor

Measure is too slow

Hi ,

Below measure is bit slow:

 

Performance = var SAIDI_TOTAL = [SAIDI Limit]*.7
Var SAIFI_TOTAL = [SAIFI Limit]*.7
RETURN
if([CSM] <> blank(),IF([SAIDI]>[SAIDI LIMIT] || [SAIFI] > [SAIFI LIMIT],"Not Performing",
If([SAIDI]<=SAIDI_TOTAL && [SAIFI]<=SAIFI_TOTAL,"Performing",
If([SAIDI]>SAIDI_TOTAL || [SAIFI]>SAIFI_TOTAL,"Just Performing"))))
 
Is there a better way to do this?
3 REPLIES 3
Anonymous
Not applicable

Hello @Priya2007 
Please check your all measure which you're using (SAIDI LIMIT AND SAIFI LIMIT).

m3tr01d
Continued Contributor
Continued Contributor

Hi @Priya2007 
What is your definition of slow?
How many seconds does it take for the visual to refresh?
Also show us the definition of ALL the measures you are using. The issue might be with another measure.

Thanks

amitchandak
Super User
Super User

@Priya2007 , Try  like

 

Performance = var SAIDI_TOTAL = [SAIDI Limit]*.7
Var SAIFI_TOTAL = [SAIFI Limit]*.7
RETURN
if([CSM] <> blank() ,
Switch(True(),
[SAIDI]>[SAIDI LIMIT] || [SAIFI] > [SAIFI LIMIT],"Not Performing",
[SAIDI]<=SAIDI_TOTAL && [SAIFI]<=SAIFI_TOTAL,"Performing",
[SAIDI]>SAIDI_TOTAL || [SAIFI]>SAIFI_TOTAL,"Just Performing"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.