Currently my expression is :
=((((Fields!OSHA_RECORDABLES.Value))*200000)/(sum(Fields!EMPLOYEE_HOURS.Value)))
but when the employee hours are zero, the results of the calculation is NaN or #error!
So I tried to add
=IIf(Sum(Fields!NewCount.Value) = 0, "0", Sum(Fields!NewCount.Value))
Where the Sum(fields...) is my expression above, but I cannot seem to bring the two together properly as I get an error upon running the report. How do I go about changing the expression so that 0.00 appears instead of NaN?
Thank you