Dragging cells referencing to cells in different sheet with formula and skipping 40 rows

StackOverflow https://stackoverflow.com/questions/23374530

  •  12-07-2023
  •  | 
  •  

Pergunta

I have to reference

`Cell B2` in Sheet2 to Cell K7 in Sheet3  followed by
`Cell B3` in Sheet2 to Cell K47 in Sheet3 then
`Cell B4  in Sheet2 to Cell K87 

basically skipping 40 rows in Sheet3. But the problem is that the K column in Sheet3 contains a formula to calculate mean from J column cells within Sheet3.

There are over 200 cells in Sheet2 where I want to be able to drag cells to copy values from K cells in Sheet3 while skipping 40 rows.

Any help appreciated!

Thanks, ExcelMind

Foi útil?

Solução

In B2 on sheet2:

=OFFSET(Sheet3!K$7,(ROW()-2)*40,0)

Then fill down

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top