Offset Help

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

Guest

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?
 
=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
 
This will return the values from A6, A12, A18, A24, etc:

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

Copy down as needed.

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

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