Select every 10th number in a list

J

judoist

I have a long list of numbers in column A. I'd like to select every 10t
number down the list. ie the 10th number, 20th, 30th etc

I'm using the formula... =INDEX(A:A,ROW()*20) which just produces a ro
of zeros.

Any ideas
 
A

Andrew Taylor

If you're copying the formula along a row, you need to make the
reference to Column A absolute:
=INDEX($A:$A,ROW()*10)
(I also changed 20 to 10 in the formula).

Andrew Taylor
 
B

BenjieLop

judoist said:
I have a long list of numbers in column A. I'd like to select every 10t
number down the list. ie the 10th number, 20th, 30th etc

I'm using the formula... =INDEX(A:A,ROW()*20) which just produces a ro
of zeros.

Any ideas?

Try this formula :

*=index($A:$A,(row()-1)*10+10)*

and copy down until your range requirement is satisfied.


Regards
 

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