View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Stearns Bob Stearns is offline
external usenet poster
 
Posts: 3
Default Concatenate a Range of Cells

I would like to come up with a macro to concatenate a range of cells like
A1:B3 into cell A4 (first row of range, last column of range plus one). I
would like to add a carriage return after concatenating each row. So in
this example A4 would be equal to =CONCATENATE(A1,A2,A3,CHAR(10),B1,B2,B3)

I would like to select the cells and then run the macro.

Any ideas would be greatly appreciated. Thanks...