Division of Data Columns?

S

Stevie

I have an old file that is set up in three columns like so:
A C E
B D F
I need the data in six columns: A B C D E F in order to sort, etc.
Anyone know how I can do this easily? There are about 1000 lines of data so
cutting & pasting individually is out of the question.
 
K

Kevin B

Click DATA in the menu and select TEXT TO COLUMNS. The next screen asks
whether its a fixed length record or delimited, and since you did not
indicate I can only assumed that it's delimited with a space as the
delimiter. If that's the case, select delimited and click the NEXT command
button, indicate which character separates one data element from the other
and click NEXT to review how Excel is parsing the data. Click FINSIH to
complete
 
D

David Biddulph

=OFFSET($A$1,ROWS($1:1)*2-2+MOD(COLUMNS($A:A)+1,2),INT((COLUMNS($A:A)-1)/2))
and copy across your required 6 columns and down as far as required.

I am assuming that your data values continue in the following order:
A C E
B D F
G I K
H J L
M O Q
N P R
 

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

Exchanging data 1
Tree from Parent/Child Pairs 1
Sum / Lookup 9
Appending Pairs of Column Data! 2
Look for value that is six columns apart 2
Mcro to order columns 1
Grouping columns 3
x if six cells are blank 4

Top