Offset Help

H

Hunter

I have a list of data. I want to pull every 6th number out of the list. I
can get it to work once by using the offset function. However, I can not get
it to work after that. Any suggestions?
 
T

Teethless mama

=INDEX($A$1:$A$100,SMALL(IF(MOD($A$1:$A$100,6)=0,ROW(INDIRECT("1:"&ROWS($A$1:$A$100)))),ROWS($1:1)))

ctrl+shift+enter, not just enter
copy all the way down until you see 0
 
T

T. Valko

This will return the values from A6, A12, A18, A24, etc:

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

Copy down as needed.

Biff
 
H

Hunter

That works great! Now what if my data starts on say R14 and I want every 6th
number?
 
Top