'Interleaf' columns of data

T

Testing123

I need to take two large columns of data and 'interleaf' them. So, if I
have data in columns A and B, I want in column C:

C1 = A1
C2 = B1
C3 = A2
C4 = B2
C5 = A3
C6 = B3
C7 = A4
C8 = B4

etc.

How can I do this?

Thanks.
 
G

Guest

In C1: =OFFSET($A$1,(ROW()-1)/2,1-MOD(ROW(),2))
Autofill that down through column C.
HTH. --Bruce
 
R

RagDyer

For a non-volatile option, you can try this:

In C1, or *any* cell in any other column besides A or B, enter:

=INDEX(A:A,(ROW(A1)+1)/2)

AND, in the cell right *under* the first cell, enter:

=INDEX(B:B,(ROW(A1)+1)/2)

Then, select *both* cells and drag down to copy as needed.
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 

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