Thread
:
Determining the number of open workbooks
View Single Post
#
2
Posted to microsoft.public.excel.programming
Nigel[_2_]
external usenet poster
Posts: 735
Determining the number of open workbooks
Number of workbooks is....
Workbooks.Count
Display each name in MsgBox.....
Dim wB As Workbook
For Each wB In Workbooks
MsgBox wB.Name
Next
--
Regards,
Nigel
"DKS" wrote in message
...
Hi,
How can I programatically (via module) determine the number of open
workbooks? Ideally I would love to also determine the names (titles) of
each
open workbook, but if that is too much then I can at least live with the
retrieval of info on the number of open workbooks.
Many thanks in anticipation.
Reply With Quote
Nigel[_2_]
View Public Profile
Find all posts by Nigel[_2_]