How do I reference a worksheet name through a formula?

P

pv6901

I would like to reference a cell to obtain a worksheet name rather than have
the worksheet name in the formula. So rather than have Sheet1! in the formula
I would like to have a cell that contains the text "Sheet1"
 
D

Dave Peterson

If A1 contains the text: Sheet1
and you wanted to retrieve the value from Z99 in Sheet1, you could use this
formula:

=indirect("'" & a1 & "'!z99")

If you need to retrieve data from worksheet in a different workbook, be aware
that that "sending" workbook has to be open for =indirect() to work the way you
want.
 
M

Mike H

Hi,

There'sno guarantee it makes you formula simpler but lets say we have

Sheet1!

in Cell A1, this formula returns A1 of sheet 1

=INDIRECT(A1&"A1")
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top