Steven McEwan
New member
- Local time
- Today, 07:55
- Joined
- Oct 14, 2001
- Messages
- 8
I would like to display a postal address in each record in a report. The address is made up of five fields, some of which are sometimes blank.
I am using a text box as follows:
=[Schedule].[Address_1] & " " & [Schedule].[Address_2] & " " & ...
I would like to insert line feed characters in the text box (in place of the spaces) so that each non-null field in the text box appears on a separate line, (and so that null fields do not appear - but I can do this part with the IIf(IsNull()) function) .
I have tried Chr(10) and Chr(13) but these just produce square characters on the screen and spaces when printed.
Any help gratefully received.
I am using a text box as follows:
=[Schedule].[Address_1] & " " & [Schedule].[Address_2] & " " & ...
I would like to insert line feed characters in the text box (in place of the spaces) so that each non-null field in the text box appears on a separate line, (and so that null fields do not appear - but I can do this part with the IIf(IsNull()) function) .
I have tried Chr(10) and Chr(13) but these just produce square characters on the screen and spaces when printed.
Any help gratefully received.