Files visible or not...

  • Thread starter Thread starter rj
  • Start date Start date
R

rj

Can someone help me out on something I'm sure is easier
than I'm making it? Brain block. Is it Monday?

I need a quick efficient method of looping through all
currently open workbooks and pop up a message box that
tells me the workbook name and whether or not its visible.

Your example code is what I need. Thanks in advance...
 
Dim wkbk as Workbook
for each wkbk in Application.Workbooks
if wkbk.Windows(1).Visible then
msgbox wkbk.Name " is Visible"
else
msgbox wkbk.Name " is not Visible"
end if
Next
 
Sub EnumWorkbooks()
Dim wrbk As Workbook

For Each wrbk In Workbooks
MsgBox wrbk.Name & vbCrLf & wrbk.Windows(wrbk.Name).Visible
Next wrbk

End Sub
 
Back
Top