I'm trying to combine two fields into one text box in SSRS through an expression. If an address does have two entries, I'd like a line break between Addr1 and Addr2.
What I have currently is:
=Fields!Addr1.Value & VbCRLF &
Fields!Addr2.Value
But Addr2 may not have an entry so I'd like to be able to handle NULLS effectively.
I've tried:
=Fields!Addr1.Value & VbCRLF &
IIF(IsNothing(Fields!Addr2.Value),"",Fields!Addr2.Value
But that doesn't seem to work. Any suggestions on how to handle this?