How do change rows to colums AND columns to rows

G

Guest

I need to change the whole orientation of my spreadsheets... columns to rows
AND rows to columns - does anyone know of a quick way, or do I have to
transpose all the information individually.

Thanks
 
G

Guest

Have you tried this?:

Select your range
Edit>Copy
Select a cell outside of your range
Edit>Paste Special>Transpose

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
G

Guest

Hi,

Maybe there is a more elegant way of accomplishinging what you want. But
the following approach should work.

Let's assume that your data are in Sheet1.

Create a blank worksheet ("Insert" --> "Worksheet").

In A1 of that worksheet, enter the following formula, and auto-fill across
columns and down rows, to accommodate the transposed data.

=IF(OFFSET(Sheet1!$A$1,COLUMN()-1,ROW()-1)="","",OFFSET(Sheet1!$A$1,COLUMN()-1,ROW()-1))

The new sheet is still linked to the original sheet. To make it
stand-alone, select and copy the entire area of the new sheet, then "Edit"
--> "Paste Special" --> "Values" --> "OK"

Regards,
B. R. Ramachandran
 
G

Guest

Many thanks - I'll try this :)

Colleen

B. R.Ramachandran said:
Hi,

Maybe there is a more elegant way of accomplishinging what you want. But
the following approach should work.

Let's assume that your data are in Sheet1.

Create a blank worksheet ("Insert" --> "Worksheet").

In A1 of that worksheet, enter the following formula, and auto-fill across
columns and down rows, to accommodate the transposed data.

=IF(OFFSET(Sheet1!$A$1,COLUMN()-1,ROW()-1)="","",OFFSET(Sheet1!$A$1,COLUMN()-1,ROW()-1))

The new sheet is still linked to the original sheet. To make it
stand-alone, select and copy the entire area of the new sheet, then "Edit"
--> "Paste Special" --> "Values" --> "OK"

Regards,
B. R. Ramachandran
 
G

Guest

Thanks - of course this seems to lose all formats, but I guess I can re-do
them.

Colleen
 
G

Guest

Thanks - I tried this but it changed all formats also - of course, I can
always re-enter, right ;)

Colleen
 
P

Peo Sjoblom

No it will carry the formatting as well unless you select otherwise

--
Regards,

Peo Sjoblom

(No private emails please)
 

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

Top