Transposing data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to transpose a column completely reversed. Can anyone help me with
this? For example:

Before:

1
2
3


After:

3
2
1

Thanks,
Biff
 
Use a help column, put

1
2
3
4
5
and so on

select both columns and sort on the help column descending
 
Assuming numbers are in column A

In B1 enter this =INDEX($A$1:$A$3,3-(ROW(A1)-1))

Copy down to B3

Adjust the $A$3,3 to your range of cells.


Gord Dibben MS Excel MVP
 
Thank you. That worked.

Gord Dibben said:
Assuming numbers are in column A

In B1 enter this =INDEX($A$1:$A$3,3-(ROW(A1)-1))

Copy down to B3

Adjust the $A$3,3 to your range of cells.


Gord Dibben MS Excel MVP
 

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


Back
Top