Advanced Paste Function

  • Thread starter Thread starter greg s
  • Start date Start date
G

greg s

Is there a way to copy a cell on, say C16 on Sheet1, that
references a cell on another worksheet cell (cell A1 on
Sheet2) and paste in cell C33 on Sheet1 but have it
reference cell A2 on Sheet2? I need to do this multiple
times and will be pasting it in cells C16,C33,C50,C67...
but need to have subsequently reference Sheet2 cell
A1,A2,A3,A4... Please help!!
Thanks in advance,
Greg
 
I gave you a way using INDEX(). OFFSET() is similar:

C16: =OFFSET(Sheet2!$A$1,INT(ROW()/17),0)
 
Back
Top