Thread
:
Working with Workbook array
View Single Post
#
3
Posted to microsoft.public.excel.programming
AA2e72E
external usenet poster
Posts: 400
Working with Workbook array
Try:
Sub Test1()
Dim wb As Workbook
For Each wb In Workbooks
MsgBox wb.Name
Next wb
End Sub
Workbooks is a collection of the open workbooks.
Reply With Quote
AA2e72E
View Public Profile
Find all posts by AA2e72E