Merging Cells adding Carriage Returns

C

Colin Vicary

Hi everyone

I've been sent a text file to import that contains (amongst othe
things) addresses.

These addresses are split over 5 cells and I want to merge them al
into one cell per address so I used :-

=B2&""&B3&""&B4&""&B5&""&B6

This worked great, but turned the address into a sinlge line. I reall
want to add carriage returns at the end of each line to make it mor
readable.

Any ideas please?

Thanks

Coli
 
A

Andy Brown

This worked great, but turned the address into a sinlge line. I really
want to add carriage returns at the end of each line to make it more
readable.

Use

=B2&CHAR(10)&B3&CHAR(10)&B4

, etc. You'll need to format cell alignment (CTRL+1) as Wrap Text, most
likely.

Rgds,
Andy
 
C

Colin Vicary

Andy

That worked perfectly, thank you!

Do you know where I can see a list of all the special characters like
line feeds and so on?

Thanks

Colin
 

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