Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi ,
Below measure is bit slow:
Hello @Priya2007
Please check your all measure which you're using (SAIDI LIMIT AND SAIFI LIMIT).
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
@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"))