bdbBear...are you trying to list all open workbooks in multiple instances of Excel that are running? ...or just get the multiple workbooks open in one Excel instance?
For one instance the workbooks collection is the way to go.
Sub tst()
For Each Workbook In Application.Workbooks
ThePath = Workbook.Path
TheFile = Workbook.Name
fname = ThePath & Application.PathSeparator & TheFile
Debug.Print fname
Next
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.