linking multiple workbooks - UPDATED

B

bkey01

Can someone please help me with linking multiple workbooks to a listbox
I have 32 excel workbooks full of charts and I want to link each t
selection in a listbox on a master sheet.

Help!!
Thanks

I have 32 excel workbooks that have over 32 sheets in each. I hav
created a 'Home' page that includes multiple list boxes. Each list bo
has 4 selections. I want to link the 4 selections to sheets that are i
different workbooks.

i.e. Product ttl is in productttl.xls (sheet product tttl) and siz
1.75 is in productttl1.75.xls (sheet procutttl 1.75).

Hope this makes more sense
 
T

Tom Ogilvy

If the workbooks will be closed, you will have to have your macro hard code
a reference to them. If they will be open, you can use the indirect
worksheet function.
 
B

bkey01

Tom said:
*If the workbooks will be closed, you will have to have your macr
hard code
a reference to them. If they will be open, you can use the indirect
worksheet function.

Thanks for the information. Can you provide me with an example of th
code for a hard code macro?

Thank
 
T

Tom Ogilvy

Sub WriteLink()
ActiveCell.formula = "='c:\Mydocuments\Myfolder\[Book1.xls]Sheet1'!$A$1"
End Sub
 

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