How do I Concatenate a Line Break

  • Thread starter Thread starter Homey
  • Start date Start date
H

Homey

If I want to take the values of A1=100, A2=200, and A3=300 and have
them fit in a cell like this:

100
200
300

instead of like this:

100 200 300

Thanks In Advance.

-Darren
 
=A1&CHAR(10)&A2&CHAR(10)&A3

Ctrl -1 (Format cells)
On the alignment tab check wrap text
 
Thank you, that's what I ended up doing temporarily.

I would like to find a way to code into a formula the same thing as
hitting (ALT + ENTER). I'm not sure what's going to happen with that
word wrap if the lengths of the values vary greatly.
 
Back
Top