View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default fill down formula incrementing by every 12 rows

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
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"westy" wrote:
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