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 Team,
i have made the expression the two columns in divide example is below
=Sum(Fields!SLA_NOT_MET_6_9_HRS.Value)/Sum(Fields!SLA_NOT_MET_COUNT.Value)
Ater added above expression getting right values but some fields are showing "NaN" Error see below
Now i want replace the 0 (Zero) instead of NaN. please share your suggestions.
Solved! Go to Solution.
Hi,
You may try this
iferror(divide(Sum(Fields!SLA_NOT_MET_6_9_HRS.Value),Sum(Fields!SLA_NOT_MET_COUNT.Value),0),0)
Hi,
You may try this
iferror(divide(Sum(Fields!SLA_NOT_MET_6_9_HRS.Value),Sum(Fields!SLA_NOT_MET_COUNT.Value),0),0)