Getting a NaN error. My original statement is:
=SUM(Fields!Outstanding_Commitments.Value/Fields!Conversion.Value, "Cost")
After getting the NaN error, i changed my code to the following:
=IIF(Double.IsNAN(SUM(Fields!Outstanding_Commitments.Value/Fields!Conversion.Value, "Cost"))
,0,
SUM(Fields!Outstanding_Commitments.Value/Fields!Conversion.Value, "Cost"))
Using the second part doesnt provide me with any values at all. Something isn't right.
Thanks in advance