Copy/Fill Down in increments

  • Thread starter Thread starter Helen B
  • Start date Start date
H

Helen B

I have a fomula on sheet1 that refers to sheet2 and I want to copy/fill down
adding 51 each time.

Example in Sheet1 cell B4 is =Sheet2!E5, I want the result in B5 to be 51
rows later ie =Sheet2!E56

How can I autfill or copy down to automatically add 51.

Thanks
 
In Sheet1 cell B4 try the below formula and copy down

=INDIRECT("Sheet2!E"&(ROW(A1)-1)*51+5)

If this post helps click Yes
 
Back
Top