How do I copy/paste odd or even rows from Exel?

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

Guest

I have a 10,000 record list in Excel.
I want to separate the list by odd and even rows. How can I do that?

Thank you,

Gabriela
 
You didn't mention how many fields you have.

With data starting in A1,

For *even* rows, enter this anywhere and copy down as needed:

=INDEX(A:A,2*ROWS($1:1))

For *odd* rows, enter this anywhere and copy down as needed:

=INDEX(A:A,2*ROWS($1:1)-1)

Post back if you need to copy additional fields across columns.
 
GM said:
I have a 10,000 record list in Excel.
I want to separate the list by odd and even rows. How can I do that?

One way ..

Assume data in cols A to D, from row2 down
Enter a label in E1, Enter in E2: x, Input in E3: o
Select E2:E3, fill down to the last row of data
Then just do a Data > Filter > Autofilter on col E
Filter out "x" from droplist in E1, copy filtered rows & paste elsewhere
Repeat with filter for: "o"

---
 

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

Back
Top