Always Execute VBA When ANY File Opened/Closed

robshobs

New Member
Joined
Aug 12, 2004
Messages
13
For many of the files I create, I have a worksheet, always named the same, with "data" that I hide from the user. I have built a macro that will unhide a very hidden sheet and will make a visible sheet as very hidden. I do not want the users to have access to this bit of VBA so I store it in Personal.XLS. Then I have to execute the macro myself for each file. Not really a big deal as I assigned it to an icon. However, sometimes I forget to hide my data and would like to automate it.

I would like to have the macro execute ANY time a file is opened. The WORKBOOK OPEN event will only work if the VBA is in each file, which I do not want.

Is there anyway to have VBA execute from Personal.XLS each time a file is opened?

If there is, what VBA will execute, from Personal.XLS, when a file is closed?

Thank you for your suggestions.

Rob
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
You could try something along these lines in the Personal.xls workbook module :

Code:
Option Explicit

Private WithEvents oApp As Application

Private Sub Workbook_Open()
    Set oApp = Application
End Sub

Private Sub oApp_NewWorkbook(ByVal Wb As Workbook)
    Call DisplayMsg(Wb, Opening:=True)
End Sub

Private Sub oApp_WorkbookOpen(ByVal Wb As Workbook)
    Call DisplayMsg(Wb, Opening:=True)
End Sub

Private Sub oApp_WorkbookBeforeClose _
(ByVal Wb As Workbook, Cancel As Boolean)
    Call DisplayMsg(Wb, Opening:=False)
End Sub

Private Sub DisplayMsg(ByVal Wb As Workbook, ByVal Opening As Boolean)
    Dim sMsg As String
    sMsg = IIf(Opening, "  is opening", "  is Closing")
    If Not Wb Is Me Then
        MsgBox Wb.Name & sMsg
    End If
End Sub
 
Upvote 0
You could try something along these lines in the Personal.xls workbook module :

Jaafar - this is great. Thank you very much!

Quick note to others. First, make sure you put it in the WORKBOOK module on Personal.xls. Second, it won't start working until after Excel is closed and reopened.
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,840
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top