Change the order of my name list

selant

Board Regular
Joined
Mar 26, 2009
Messages
109
I have a list of names and they are in the following format :

Code:
A1     B1     C1
A2     B2     C2
A3     B3     C3
A4     B4     C4
A5     B5     C5

How can i list them in the following order ?

Code:
A1
B1
C1
A2
B2
C2
A3
B3
C3

P.S : This is quite a long list containing about 5000 names in total.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Have a look at Transpose

hi steve,
i know transpose but it works for single line i think, or it doesnt give me the order I want. I dont want the list in following format :

Code:
A1
A2
A3
A4
...
B1
B2
B3
B4
...
C1
C2
C3
C4
 
Upvote 0
That's a lot more than 5000 names! I hope you have Excel 2007?
 
Upvote 0
Basic formula is like:
=INDEX(Sheet2!$A$1:$C$12,INT((ROW()-1)/3)+1,MOD((ROW()-1),3)+1)
adjust the table range and change the 3s to 2980.
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,174
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top