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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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"))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors