Starting row 3, I have 'specific values' repeating on
- every 3rd 7th 11th 15th...up to 43rd column
- then it goes down to 19th row (16 rows down) and repeats it to above columns then it goes down to 16 rows below that and repeats (note this point)
I want to pull down these specific values on a column starting from row 2 (eg: from B2 downwards)
For the first part, I was able to get this
=OFFSET($C$3,0,4*(ROW()-1))
This works perfectly for the row. It pulls every 3rd 7th 11th 15th columns...
I can even put a 'if formula' to see if the column is 43 then tell it to go down 19 rows (by putting an indirect formula inside offset).
However, this has to be repeated as well (as noted above). How can I go on to do that?
Thanks for your time!
Mod(row()-1,11)You may need to adjust the math a little. Then you will need to reset the column part so you will need to make the column something like4*(ROW()-1)-(11*(Mod(row()-1,11)))again I did not test it but this should get you close.=OFFSET($C$3,Mod(row()-1,11),4*(ROW()-1)-(11*(Mod(row()-1,11))))=OFFSET($C$3,QUOTIENT(ROW()-1,11),(4*(ROW()-1-(11*(QUOTIENT(ROW()-1,11)))))). It is 11 because that is the number of columns. It needs to reset to offset of 0 on the column every 11 rows of the formula column.