There is no point in creating labels for data that null in address, city, zip and country. I need some help in setting an expression where the report shows only fullname, address,city,zip,code and country fields. Please assist me in completing this.
Do not Want Example:
John Doe
(Null Address)
(Null City), (Null State) (Null Zip)
(Null Country)
Want This:
Jane Doe
123 Fake Street
Sao Paolo, Brazil 343434
Here is my currently unfinished expression for returning the second example:
=IIF(IsNothing(Fields!FirstName.Value + "," + Fields!FirstName.Value + vbcrlf + Fields!EnteredAddress1.Value + vbcrlf + Fields!EnteredAddress2.Value + vbcrlf + Fields!EnteredCity.Value + Fields!EnteredState.Value + Fields!EnteredZip.Value+vbcrlf + Fields!EnteredCountry.Value)," ")