S
samadams_2006
Hello,
I'm interested in determining all instances of Excel currently open on
my PC. I would then like to be able to loop through all of these
instances of Excel, and determine the Workbooks that are open in each
instance of Excel.
I understand that I can use something like the following code:
Dim myWB As Workbook
For Each myWB In Workbooks
MsgBox "Workbook: " & myWB.Name
Next myWB
to find all the workbooks in the current Excel Instance...but what
about all Excel Instances that are running on my PC.
Is there an easy way to do this?
Thanks
Sam Adams
I'm interested in determining all instances of Excel currently open on
my PC. I would then like to be able to loop through all of these
instances of Excel, and determine the Workbooks that are open in each
instance of Excel.
I understand that I can use something like the following code:
Dim myWB As Workbook
For Each myWB In Workbooks
MsgBox "Workbook: " & myWB.Name
Next myWB
to find all the workbooks in the current Excel Instance...but what
about all Excel Instances that are running on my PC.
Is there an easy way to do this?
Thanks
Sam Adams