how does excel read only odd numbered rows of data froma column?

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

Guest

I HAVE A COLUMN OF 500 NUMBERS, I NEED TO CHOOSE EVERY OTHER DATA IN THE
COLUMN, ex. : row #1, then row #3, row #5, row #7,....
in other words: i need to choose the odd/even numbered cell numbers.
 
Assuming the data is in col A, A1 down

Put
in B1: =IF(MOD(ROWS($A$1:A1),2)=1,A1,"")
in C1: =IF(MOD(ROWS($A$1:A1),2)=0,A1,"")

Select B1:C1 and copy down until the last row of data

Col B will return the data from col A which are in rows 1,3,5, ...
while col C will return those which are in rows 2,4,6,...
 

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