|
Re: incrementing worksheet numbers on a master sheet
Assuming
MASTER!A1 to link to 1!A1, MASTER!A2 to link to 2!A1 etc...
MASTER
A1: =INDIRECT("'"&ROWS(A$1:A1)&"'!A1")
copied down
INDIRECT is Volatile though... if this is a one off task you could enter
A1: ="#'"&ROWS(A$1:A1)&"'!A1"
copy down
Once complete, highlight column A, copy & paste special the results as values only (ie getting rid of the formulae), then with the column still highligted run an EDIT/REPLACE replaing # with = ... at which point all become non-volatile links.
Last edited by DonkeyOte; 06-27-2009 at 01:28 PM.
Reason: added alternative
|