Using the Indirect function with a sheet number instead of a sheet name

J

JDB

I use the Indirect function to summarize data from various worksheets;

If I have a worksheet named "Lucky", I can easily use the indirect
function. My problem is that I will receive a workbook with a varying
number of worksheets that are named as shipping container numbers.
Each of these are unique and there is no order to them.

I would like to be able to use the indirect function by using the sheet
number instead of the sheet name but have had no success in doing so.

So the question is; "How can I use the sheet number in the Indirect
function to retrieve a value?"

Thanks

JDB
 
P

Peo Sjoblom

=INDIRECT("'12345'!A1")

or if the number is in cell
A10

=INDIRECT("'"&A10&"'!A1")

--
Regards,

Peo Sjoblom

(No private emails please)
 
J

JDB

Thanks but that does not seem to answer my question.

As I understand it, each worksheet has 2 names; a name and a codename.
If I look at the VBA explorer I can see 2 names for each worksheet
sheet1(Lucky).

Sheet1 is the Codename, and "Lucky" is the name.

I want to use the Codename in the function Indirect.

Thanks

JDB
 
D

Dave Peterson

That codename can be used for lots of things in code--but there's nothing you
could do with it in a worksheet (well, using stuff built into excel).

You'd have to write your own function to use it and if you did that, you
probably wouldn't need the =indirect() portion.
 
P

Peo Sjoblom

Not possible using built in functions, Harlan Grove wrote a UDF

http://tinyurl.com/7cnaf

and if you scroll down a bit more there is a method using Excel 4 macro
however if copied it will crash some versions of Excel

--
Regards,

Peo Sjoblom

(No private emails please)
 

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