Thread: Transpose Range
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Transpose Range

Put this formula in C1, then drag fill down

=OFFSET($A$1,ROUNDDOWN((ROW()-1)/2,0),MOD(ROW()+1,2))

If you want hard coded number, then select column C and do Edit=Copy, then
immediately Edit=Paste Special and select values.

--
Regards,
Tom Ogilvy

"weeper" wrote in message
...
How can I enumerate and transpose all cells in a range (array).

here is my range (before) ("A1:B4"):

A B
-- --
1 2
3 4
5 6
7 8

what i want do to is transpose to Column C like this

C
--
1
2
3
4
5
6
7
8

Thanks
w