How to change text string?

G

Guest

I have used the CONCATENATE function and obtained the result I wanted but not
in the form I need. My results are all joined into one text string (A,B,C,D)
however they need to be one beneath the other in the same cell:
A
B
C
D
Thank you
 
B

Biff

Hi!

Try something like this:

Format the cell to wrap text:

=C8&CHAR(10)&C9&CHAR(10)&C10&CHAR(10)

In the above, I'm concatenating cells C8, C9 and C10

Biff
 
B

Biff

Ooops!

I have one too many char(10)'s :

=C8&CHAR(10)&C9&CHAR(10)&C10&CHAR(10)

Should be:

=C8&CHAR(10)&C9&CHAR(10)&C10

Biff
 

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