View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.newusers
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default Carriage Return in a Concatenation

Carriage return is CHAR(10)

=H2 & CHAR(10) & I2 & CHAR(10) & on and on.


Gord Dibben MS Excel MVP

On 12 Aug 2006 08:02:03 -0700, wrote:

I have a serveral lines of VB that I need to Concatate, I have them in
seperate columns b/c a few aspects will change. Currently my
Concatenation looks like =H2&I2&J2&K2, I need a carriage return between
&, I can get this result by putting each row colum on a seperate row,
but that is not really feasiable, I know that there has to be a better
way, any suggestions?