Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good Afternoon,
I originally was using a differnt Macro to detect if a workbook was closed. In the event the workbook was open, it would pop up an error message informing the user "workbook in use, try again later". After using it in an actual application, it failed so I wrote a basic one as shown below just to see if my sheet was even detecting the workbook open function - it does not. By looking at the code below, can you think of any ideas "why" my worksheet might not be detecting if another sheet is open? I also tried this on 2 blank workbooks just to make sure no other code was interfering - it failed there too. Thanks for your review and thoughts - Jenny B. Sub ChckOpenStatus() Dim wb As Workbook Dim wbopen As Boolean Dim wbfilename As String wbopen = False wbfilename = "C:\Documents and Settings\Me\Desktop\Book2" For Each wb In Application.Workbooks If wb.Name = wbfilename Then wb.Open = True wb.Activate MsgBox "Workbook is in use. Try again later" End If Next If wbopen = False Then Workbooks.Open wbfilename End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Detecting if a Window/Workbook is Open | Excel Discussion (Misc queries) | |||
How do I clear read-only status on a workbook file? | Excel Discussion (Misc queries) | |||
Shared workbook displays [version 1] in status indicator | Excel Discussion (Misc queries) | |||
List "OPEN" orders based on a status column | Excel Worksheet Functions | |||
Calc status of open excel workbook should not overwrite another | Setting up and Configuration of Excel |