I have an SSRS expression where sometimes the denominator is 0, and I get a #DIV error so I added a +.0001 to eliminate the #DIV error, but when I add a FLOOR syntax I get an #ERROR, and I can't figure out to remove the #ERROR. The result should be NULL is I add the FLOOR syntax.
Code 1 without FLOOR:
=IIF(Sum(Fields!Handled.Value) > 0, Sum(Fields!talktime.Value) / Sum(Fields!Handled.Value+.0001), "")
Code 2 with FLOOR:
=FLOOR(IIF(Sum(Fields!Handled.Value) > 0, Sum(Fields!talktime.Value) / Sum(Fields!Handled.Value+.0001), ""))