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
(E-Mail Removed)
"DKS" <(E-Mail Removed)> wrote in message
news:E3AD4CF9-6EDF-4F91-981F-(E-Mail Removed)...
> 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.