I am trying to create a spread sheet in Google Sheets that has one sheet as a daily update with a 7day avg while the other sheet pulls the weekly average from the daily sheet and then calculates the difference. I have difference and pulling value from the other tab figured out. Trying to save time by dragging the reference formula down but I can't get it to skip to every eighth cell value
ex. ='Progress Sheet (Athlete Only)'!A9 -- (simple) but I need "!A9" to jump to "!A17" and so forth when dragging the formula down.
I tried =offset and =index but I am struggling to figure it out.
Tried =index and =offset but not too familiar with the function when referencing another sheet
Use SEQUENCE()
function generate numbers skipping 8 rows. Give a try to the following formula-
=MAP(SEQUENCE(50,1,9,8),LAMBDA(x,INDEX(Sheet2!A:A,x)))
Replace Sheet2
by your sheet name.