fill down formula incrementing by every 12 rows

G

Guest

Hi - I want to drag/fill down a formula in 12 rows (eg A1 to A12)as follows
=Sheet1A2
=Sheet1A2
=Sheet1A2
=Sheet1A2
=Sheet1A3
=Sheet1A3
=Sheet1A3
=Sheet1A3
I want it to increment by 1. eg next 12 rows would =Sheet1A4 etc
Selecting the entire range does not work, it just keeps returning the same
value eg Sheet1A2
Thanks
Craig
 
T

T. Valko

So, you want to repeat the reference 4 times then increment by 1?

Try this:

=INDEX(Sheet1!A$2:A$65536,CEILING(ROWS($1:1)/4,1))
 
G

Guest

Another way

In say, Sheet2's B2, copied down as far as required:
=OFFSET(Sheet1!$A$2,INT((ROWS($1:1)-1)/4),)
will "repeat the reference 4 times then increment by 1"

The starting reference is:
=Sheet1A2
 

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