Concatenating data on a new line(within the same cell)

R

RJ

I'm trying to concatenate 3 lines of a product description
into one cell.. So of course i'll use something like
=A1&A2&A3, but i need there to be new lines between each
insert. So if i looked at a cell the product description
would look like..
 
A

Anon

RJ said:
I'm trying to concatenate 3 lines of a product description
into one cell.. So of course i'll use something like
=A1&A2&A3, but i need there to be new lines between each
insert. So if i looked at a cell the product description
would look like..

------------------
A1 |
A2 |
A3 |
------------------

Any help is appreciated!

- RJ

Why do you want to do this? It's usually a really bad idea! For printing,
define your own borders rather than printing gridlines and it looks just
the same.

However, if you really must, you could use
=A1&CHAR(10)&A2&CHAR(10)&A3
and format the cell to wrap text.
 

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