flip columns to rows

C

captain fantastic

Is there any way to 'flip' a worksheet with one command, so that columns become
rows (or rows become columns)?
 
C

Chris J Dixon

captain said:
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
 
A

AndyW

captain fantastic said:
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
 
M

Max

captain fantastic said:
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

---
 
H

Henn Sarv

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
 
M

Max

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.

---
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top