I am working with Rdlc report. I have these fields:
First name
Address1
Address2
City, state, zip
If any one of these fields is empty, it should not show the blank space. For example (expected output)
First name,
Address1,
City, state, zip
But, as show in the above image, I am getting this:
First name,
Address1,
........................<-(blankspace is showing here)
City, state, zip
I tried changing Visiblity
-> Expression
->
=IIF(String.IsNullOrEmpty(Fields!Address2.Value), false,True)