Is there any way to 'flip' a worksheet with one command, so that columns become
rows (or rows become columns)?
Cavy - 10 Mar 2008 13:36 GMT
Have you tried the Transpose function?
> Is there any way to 'flip' a worksheet with one command, so that columns become
> rows (or rows become columns)?
Chris J Dixon - 10 Mar 2008 14:02 GMT
>Is there any way to 'flip' a worksheet with one command, so that columns become
>rows (or rows become columns)?
Not one command, but you could write a macro.
Select all
Copy
Paste Special tick "Transpose"
Chris

Signature
Chris J Dixon Nottingham UK
chris@cdixon.me.uk
Have dancing shoes, will ceilidh.
AndyW - 10 Mar 2008 14:06 GMT
> Is there any way to 'flip' a worksheet with one command, so that columns
> become
> rows (or rows become columns)?
Copy
Paste Special ..... transpose
AndyW
Max - 10 Mar 2008 14:29 GMT
> Is there any way to 'flip' a worksheet with one command, so that columns become
> rows (or rows become columns)?
Another way, via a formula
Assume source data in Sheet1
In Sheet2,
Put in A1: =OFFSET(Sheet1!$A$1,COLUMNS($A:A)-1,ROWS($1:1)-1)
Copy A1 across & fill down as far as required to return a dynamic transpose
of Sheet1

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
Henn Sarv - 10 Mar 2008 22:48 GMT
Much easier formula (I'm using in that case)
on the sheet2
in A1: = OFFSET(Sheet1!$!$1,COLUMN()-1;ROW()-1)
This is one common "fault" - people forget the most simple 2 functions -
ROW() and COLUMN()
With offset they may do the miracles :)
With bests
>> Is there any way to 'flip' a worksheet with one command, so that columns
>> become
[quoted text clipped - 7 lines]
> transpose
> of Sheet1
Max - 10 Mar 2008 22:58 GMT
Albeit longer, the earlier version was meant to be a generic which could be
placed in any starting cell in Sheet2 and then propagated across/down, in
case this is preferred.

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---