Insert line feed in a string

T

Tom

In my report the first column has company name, address, city-state-zip,
telephone, and web site.

The field is built by adding text strings with the "&".

How do I get the the report to insert a line feed after the company name,
adress, city-state-zip and, telephone?
 
R

Rick Brandt

Tom said:
In my report the first column has company name, address,
city-state-zip, telephone, and web site.

The field is built by adding text strings with the "&".

How do I get the the report to insert a line feed after the company
name, adress, city-state-zip and, telephone?

=[city] & Chr(13) & Chr(10) & [state] etc..
 
T

Tom

Ok, thanks. It works on text fields but not hyperlinks.

www.microsoft.com becomes

www.microsoft.com#www.microsoft.com#








Rick Brandt said:
Tom said:
In my report the first column has company name, address,
city-state-zip, telephone, and web site.

The field is built by adding text strings with the "&".

How do I get the the report to insert a line feed after the company
name, adress, city-state-zip and, telephone?

=[city] & Chr(13) & Chr(10) & [state] etc..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top