We are aiming to make a formula that results in =Your Sheet Name!N46
Which is what =INDIRECT("Sheet"&ROW(A1)&"!Z1" in my example
BUT ---- your sheet names have spaces in them so we must enclose them in
single quotes
I have three sheets that are named as Ew 01, Ew 02, and Ew 03
In D1 of each I have the numbers 5, 6, and 7, respectively
On my summary sheet (in Cell B14 but it could be anywhere) I have the
formula
=INDIRECT("'Ew 0"&ROW(A1)&"'!D1")
That is
=INDIRECT( double-quote singe-quote Ew 0 double-quote &ROW(A1) double-quote
single- quote !D1 double-quote.
This will evaluate to =INDIRECT("'Ew 01'!D1) and point to 'Ew 01'!D1
The cell displays the 5 from that cell
I copy this down one row and it becomes
=INDIRECT("'Ew 0"&ROW(A2)&"'!D1")
This will evaluate to =INDIRECT("'Ew 02'!D1) and point to 'Ew 02'!D1
The cell displays the 6 from that cell
And so on
It does work but you must get the quotes correct
Email me directly (remove TRUENORTH.) if you want a sample worksheet
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email
"Link Sheets to Summary Page - NEED HELP"