Hello:
I need to create a mailing lables report with 3 or 4 lines. The database has a address line 2 field incase there’s an apartment or the address is to long to fit on one line.
Very few of the records use this field so I’ve declared the control source for address2 as follows:
=IIf(IsNull([address2]),[City] & “, ” & [Province] & ” ” & [PostalCode],[address2] & chr$(13) & [City] & “, ” & [Province] & ” ” & [PostalCode])
in otherwords, if address 2 is null, as it usually is, then print city, province and postal code.
If address 2 is not null then print
address 2 line feed and city ….
When I run the report, everything works except the new line. The address 2 and city province … are on the same line.
Any ideas?
Thanks.