SSRS – If field empty then don’t display

I didn’t resolve the merged columns issue. Until I do, I got another little challenge: I want to not see a specific field when it doesn’t extract any values. For example, I don’t want to see Postal Code if that is not recorded.

How do I do that?

work in progress…

I now have the answer – for each column you add this here:

formula: =IIF(Isnothing(column), true, false)

That is it. 🙂 It worked. Now back to the merged situation…

Leave a comment