Convert Single ALPHA Column to Two

L

Lin400

I have almost 800 rows of alpha titles in one column I want to split into two
columns, while keeping them in alphabetical order - side-by-side rather than
one long alpha list.

Is this poss without spending hours moving each line manually?

V. Excel 2003
 
A

Allllen

Insert a new blank column on the right of your current column.
Go about halfway down your list and select a cell.
Do control+shift and down, to select all the cells from the middle to the
bottom of your column.
Right click
Cut
Go to the top of the new column you created
select the first cell
right click
paste
 
L

Lars-Åke Aspelin

I have almost 800 rows of alpha titles in one column I want to split into two
columns, while keeping them in alphabetical order - side-by-side rather than
one long alpha list.

Is this poss without spending hours moving each line manually?

V. Excel 2003


If your data are in cells A1:A800, try this:

In cell B1 you enter the following

=OFFSET(A1,2*ROW()-2,0)

In cell C1 you enter the following

=OFFSET(A1,2*ROW()-1,0)

Then copy cells B1:C1 down as long as needed (to B400:C400 if you have
800 data)

Finally copy cells B1:C400 and paste them with
"Paste Special / Values" to where you want your two new columns to be.

Hope this helps / Lars-Åke
 
L

Lars-Åke Aspelin

If your data are in cells A1:A800, try this:

In cell B1 you enter the following

=OFFSET(A1,2*ROW()-2,0)

In cell C1 you enter the following

=OFFSET(A1,2*ROW()-1,0)

Then copy cells B1:C1 down as long as needed (to B400:C400 if you have
800 data)

Finally copy cells B1:C400 and paste them with
"Paste Special / Values" to where you want your two new columns to be.

Hope this helps / Lars-Åke

Sorry, replace A1 with A$1 in the two formulas above.
 
J

Jacob Skaria

Hi "Lin400"

With your data in Col A starting from Row 1; try the below formula in B1, C1
and the cells below as required .

=INDEX($A:$A,(ROW()-ROW($A$1))*2+COLUMN()-1)

If this post helps click Yes
 

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