View Single Post
  #2   Report Post  
David McRitchie
 
Posts: n/a
Default

Hi Kevin,


INDIRECT Worksheet Function
http://www.mvps.org/dmcritchie/excel/indirect.htm
and
http://www.mvps.org/dmcritchie/excel/buildtoc2.htm


=INDIRECT($A$1 & "!$E$2)
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"KevinB" wrote in message ...
Hi,

I have 100+ worksheets. I have formulas that hard code those worksheet names.
Such as the the simple formula: =Sheet58!$E$2

I would like the "58" to be generated from cell (i.e. A1 has a value of 58)
so I can have a formula that like:

="Sheet($A$1)"!$E$2

What is the correct syntax? I tried INDIRECT, but could not get it to work
..