formula increment

I

in2ition

How do you increment a formula by 12? I have some data that I can copy and
paste in excel, and the info I want appears on every 12th row. So, I want to
be able to paste it, and create a formula that will automatically pull
whatever values are in G1, G13, G25, and so on. Thanks!
 
K

Ken Johnson

How do you increment a formula by 12? I have some data that I can copy and
paste in excel, and the info I want appears on every 12th row. So, I want to
be able to paste it, and create a formula that will automatically pull
whatever values are in G1, G13, G25, and so on. Thanks!

Maybe =INDIRECT("G" & ROWS(A$1:A1)*12-11)

Ken Johnson
 
R

Rick Rothstein \(MVP - VB\)

Here is a non-volatile offering...

=INDEX(G$1:G$1001,12*ROWS($1:1)-11)

Set the top end on the G$1:G$1001 range to suit your needs.

Rick
 

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