copy same formula with with different worksheet reference

C

c-cat

I am trying to copy formula's on the same worksheet with references to
different worksheets within the same document, is there a way to do this?
 
M

MyVeryOwnSelf

I am trying to copy formula's on the same worksheet with references to
different worksheets within the same document, is there a way to do this?

The INDIRECT function might help. See Excel's built-in Help about INDIRECT.

Below is a simple example as a csv file.

--------------- cut here -------------
Sheet1,"=INDIRECT(A1&""!D3"")"
Sheet2,"=INDIRECT(A2&""!D3"")"
Sheet3,"=INDIRECT(A3&""!D3"")"
 
Top