I have a report that need null values replaced with N/A. It works for x amount of rows until the null value is hit then the rest of the data needing to be displayed just goes away.
Here is my expression
=iif(Fields!PastBaseline.Value is nothing, "N/A", Round(Fields!PastBaseline.Value))
Anyone know what I am doing wrong?