Line break formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I need to combine two cells into one - which I can do using the ampersand
formula, however I need to insert a line break between the information in the
two cells. Would someone please be able to point me in the right direction as
to how I would do this?

Many thanks,
Catriona
 
You need to add character code 10, like so:

=A1&CHAR(10)&B1

Hope this helps.

Pete
 
Try something like this:

B1: =A1&CHAR(10)&A2

That formula appends the value in A2 to the value in A1, separated by a
carriage return......(that's what ASCII character 10 is)

Remember to set the cell format to wrap text and adjust the column width if
you need to.

Does that help?
***********
Regards,
Ron

XL2003, WinXP
 

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

Back
Top