Other Open Workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi...

I have 10 files I work with...1 being the MASTER file that will remain open
at all times...I open the other 9 files 1 at a time.

Is there any way that when the MASTER file is the one activated to select
the other open file when I don't know its name?

Thank you for you time and support :)

T
 
for each Bk in WorkBooks
if Bk.Windows(1).Visible = True then
if Bk.Name <> "Master.xls" then
Bk.Activate
exit sub
end if
End if
Next
 
Tom...Thank U :)

Tim

Tom Ogilvy said:
for each Bk in WorkBooks
if Bk.Windows(1).Visible = True then
if Bk.Name <> "Master.xls" then
Bk.Activate
exit sub
end if
End if
Next
 

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

Back
Top