ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Files visible or not... (https://www.excelbanter.com/excel-programming/278587-files-visible-not.html)

rj[_3_]

Files visible or not...
 
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...

Tom Ogilvy

Files visible or not...
 
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

--
Regards,
Tom Ogilvy

"rj" wrote in message
...
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...




losmac

Files visible or not...
 
Sub EnumWorkbooks()
Dim wrbk As Workbook

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

End Sub


Uzytkownik "rj" napisal w wiadomosci
...
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...





All times are GMT +1. The time now is 04:24 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com