I'm trying to insert a line feed (or carriage return) into a text formula I
have in a cell. I'm trying to concatenate text entered into two other cells
in this new cell and have the two entries on a different line within the same
cell. Anybody know how to do this?
First you need to turn on word wrap under format>cells>alignment, then use
CHAR(10), i.e.
="text"&CHAR(10)&"text2"
Regards,
Peo Sjoblom
"TX_KniveS" wrote:
> I'm trying to insert a line feed (or carriage return) into a text formula I
> have in a cell. I'm trying to concatenate text entered into two other cells
> in this new cell and have the two entries on a different line within the same
> cell. Anybody know how to do this?
> First you need to turn on word wrap under format>cells>alignment, then use
> CHAR(10), i.e.
>
> ="text"&CHAR(10)&"text2"
>
>
> Regards,
>
> Peo Sjoblom
>
> "TX_KniveS" wrote:
>
> > I'm trying to insert a line feed (or carriage return) into a text formula I
> > have in a cell. I'm trying to concatenate text entered into two other cells
> > in this new cell and have the two entries on a different line within the same
> > cell. Anybody know how to do this?
--
Don Guillett
SalesAid Software
donaldb@281.com
"TX_KniveS" <TXKniveS@discussions.microsoft.com> wrote in message
news:8C50B57A-2E2A-4FD2-BE30-0342D39ADBAB@microsoft.com...
> I'm trying to insert a line feed (or carriage return) into a text formula
I
> have in a cell. I'm trying to concatenate text entered into two other
cells
> in this new cell and have the two entries on a different line within the
same
> cell. Anybody know how to do this?
"Don Guillett" <donaldb@281.com> wrote in message ...
> try alt+enter where you want it to break
>
> "TX_KniveS" <TXKniveS@discussions.microsoft.com> wrote ...
> > I'm trying to insert a line feed (or carriage return) into a text formula I I
> > have in a cell. I'm trying to concatenate text entered into two other cells
> > in this new cell and have the two entries on a different line within the
> > same cell. Anybody know how to do this?
>
>
If you wish to copy and paste the concatenated result into an email body and
not loose the line returns try this.
=CONCATENATE($A1,CHAR(13),$B1)
Good luck.
"TX_KniveS" wrote:
> I'm trying to insert a line feed (or carriage return) into a text formula I
> have in a cell. I'm trying to concatenate text entered into two other cells
> in this new cell and have the two entries on a different line within the same
> cell. Anybody know how to do this?