Concaenate formula- text diff lines?

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

Guest

Is there a way to make the CONCATENATE formula put all the text on different
lines? It keeps combining some on the same lines and I want them all on
separate- like a list. Thank you for your help!!

LJoe
 
Not sure exactly what you are asking, but to concatenate 2 lines is simply,

=concatenate(a1,b1)

Give us an example of what you are asking
 
right click on the cell your CONCATENATE function resides in, click
Format cell, Alignment tab, under text control check Wrap text then
Ok.
hopefully you will get what you want.
 
LJoe said:
Is there a way to make the CONCATENATE formula put all the text on
different
lines? It keeps combining some on the same lines and I want them all on
separate- like a list. Thank you for your help!!

=A1&CHAR(10)&B1
or
=CONCATENATE(A1,CHAR(10),B1)

You'll also need:
Format/ Cells/ Alignment/ Wrap text
 
I am combining a3 to a10 with the formula. That is doing what I want it to
do, but I want it to appear in the cell as:

a3
a4
a5...etc like a list.

Right now, I have a3 to a10 all aligned left and all underneath eachother
before I do the concatenate formula. I want it to look like it does now,
just all in one cell. Does that clarify?
 
LJoe said:
Is there a way to make the CONCATENATE formula put all the text on
different
lines? It keeps combining some on the same lines and I want them all on
separate- like a list. Thank you for your help!!

LJoe

"Wrap Text" may work, but if you include CHAR(10) between lines, it will put
the right stuff on separate lines, e.g.

=CONCATENATE(A1,CHAR(10),A2,CHAR(10),A3,CHAR(10),A4)

The CHAR(10) is a line feed code...

Beege
 
Thank you so much, works great!

David Biddulph said:
=A1&CHAR(10)&B1
or
=CONCATENATE(A1,CHAR(10),B1)

You'll also need:
Format/ Cells/ Alignment/ Wrap text
 
Thank you Beege. It is just what I wanted.

Beege said:
LJoe

"Wrap Text" may work, but if you include CHAR(10) between lines, it will put
the right stuff on separate lines, e.g.

=CONCATENATE(A1,CHAR(10),A2,CHAR(10),A3,CHAR(10),A4)

The CHAR(10) is a line feed code...

Beege
 
Help! I have tried this formula and the items appear on one line with an =
sign between the date
 
Rita

What date?

Show us a sample of your data and the formula you are using.


Gord Dibben MS Excel MVP
 

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