View Single Post
  #4   Report Post  
Alan Beban
 
Posts: n/a
Default

Peter Brown wrote:
I have data that is in the format of 3 columns wide by about 3000 rows. I
want to rearrange each row to become a single column. Eg. Cells
A1,B1,C1,A2,B2,C2 to become in cells A1,A2,A3,A4,A5,A6 respectively. I have
transposed the data but this only puts each row in it's own column. I still
need to put all the new columns into one column. Thankyou for any help given.

If the functions in the freely downloadable file at
http://home.pacbell.net/beban are available to your workbook you can
array enter into D1:D9000:

=ArrayReshape(A1:C3000,9000,1)

Alan Beban