![]() |
how does excel read only odd numbered rows of data froma column?
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. |
Please do NOT type in upper case. Have a look at MOD
-- Don Guillett SalesAid Software "Rose_mina" wrote in message ... 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. |
What do you want to do with the numbers (sum, average, ...)?
-- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Rose_mina" wrote in message ... 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,... -- Rgds Max xl 97 --- GMT+8, 1° 22' N 103° 45' E xdemechanik <atyahoo<dotcom ---- "Rose_mina" wrote in message ... 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. |
All times are GMT +1. The time now is 02:34 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com