Cell to sheet reference

T

Tom Stout

How do I use the value in a cell, for example the year 2004, to refer to a
worksheet with the name 2004?
 
R

Ron de Bruin

Hi Tom

See the help for the indirect function
with a sheet name in A1

=INDIRECT($A$1 & "!G3")
 
Top