I have this report where I need to format the data to a precision based on the parameter. Plus I need to make sure when data is exported to excel - it is not exported as text.At the same time, I need to allow null data. So I am using something like:=IIf(Fields!DATA_VALUE.Value >= 0 And Fields!DATA_VALUE.Value < 9980,FormatNumber(Fields!DATA_VALUE.Value,Fields!AMETH_PRECISION.Value)*1.000,Nothing)
But it comes up with #Error in all the null fields - that I don't think is appropriate.Any ideas how to fix it?Thanks.