ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   is workbook open (https://www.excelbanter.com/excel-programming/277447-workbook-open.html)

big G

is workbook open
 
Is there a simple way in VBA to determine if a workbook of a specific name
is open?





Rob Bovey

is workbook open
 
"big G" wrote in message
...
Is there a simple way in VBA to determine if a workbook of a specific name
is open?


The following function returns True or False depending on whether the
workbook name passed to it is an open or closed workbook:

Public Function bIsBookOpen(ByRef szBookName As String) As Boolean
On Error Resume Next
bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing)
End Function


Sub Demo()
MsgBox "Is MyBook.xls open? " & bIsBookOpen("MyBook.xls")
End Sub

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *






Tom Ogilvy

is workbook open
 
Dim wkbk as Workbook
On Error Resume next
set wkbk = workbooks("MyWorbook.xls")
On Error goto 0
if wkbk is nothing then
msgbox "It isn't open"
End if


--
Regards,
Tom Ogilvy


big G wrote in message
...
Is there a simple way in VBA to determine if a workbook of a specific name
is open?








All times are GMT +1. The time now is 11:40 PM.

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