OzGrid

Auto-Run-Macros

< Back to Search results

 Category: [Excel]  Demo Available 

Automatically Run Excel Macros Upon Opening Excel

 

Automatically Run Excel Macros Upon Opening Excel Workbook/Files. Auto Run Excel VBA Macro Code

Got any Excel/VBA Questions? Free Excel Help

Auto Run Excel Macros Upon Open.

 

Excel has the ability to automatically run/execute any Excel macro code of our choosing when opening an Excel Workbook. This of course is providing that the user has chosen to enable macros! In the past (pre Excel 97) one would name a macro Auto_Open and Excel would automatically run/execute any code within this procedure. This method, by the way, is still workable in Excel versions since 97 for backward compatibility.

Workbook_Open Event

In Excel 97 Microsoft introduced what are called Events, one of these is the Workbook_Open Event. However, unlike the old Auto_Open macro, the Workbook_Open event is a procedure of the Workbook Object and as such, the Workbook_Open procedure MUST reside in the private module of the Workbook Object (ThisWorkbook). The Auto_Open macro on the other hand, must reside in a standard public module.

Accessing the Private Module of the Workbook Object (ThisWorkbook)

There are at least 2 ways to gain access to the private module of the Workbook Object (ThisWorkbook)

1) While in Excel proper, right click on the Excel icon, top left next to File and choose View Code.

2) While in the VBE double click the Module called ThisWorkbook, seen in the Project Explorer (View>Project Explorer (Ctrl+R))

Once here, you can select "Workbook" from the Object drop down list, located in the top left of the module pane. After you have selected "Workbook" Excel will default to If you want to keep being together you do not run, you do not do nothing about the situation. You step through the gate; you do not just walk away from your relationship. This is a crucial point, you got to take the discussion because if you do not, and you stay together, it will become a poison that slowly kills you. Obviously, it is also over if you just walk away, but you will always think back on that special girl (or boy), and keep asking yourself "what if?", like in movies, which you can watch free on fmovies.io .;

Private Sub Workbook_Open()

Note, in Excel 97 accessing ThisWorkbook would automatically add the Workbook_Open event.

How to use the Workbook_Open Event

There are basically 2 ways we can have Excel VBA macro code run/execute via this Workbook_Open event. See the 2 simple examples below;

Private Sub Workbook_Open()



MsgBox "Hi, thanks for opening me", vbInformation, "Ozgrid.com"



End Sub







Private Sub Workbook_Open()



Run "MyMacro"



End Sub

In the second case, "MyMacro" must be the name of the procedure in any standard public module (Insert>Module).

If you wish to run/execute code that also resides in the same private module you cannot use the Run statement, only the procedure name. E.g.

Private Sub Workbook_Open()



MyMacro



End Sub







Private Sub MyMacro()



MsgBox "Hi, thanks for opening me", vbInformation, "Ozgrid.com"



End Sub

 


See also:

Excel AutoFilters in VBA using Dates
Criteria for VBA filters
Excel VBA AutoFilters

 

Free Training Course: Lesson 1 - Excel Fundamentals

 

See also: Index to Excel VBA Code; Index to Excel Freebies; Lesson 1 - Excel Fundamentals; Index to how to… providing a range of solutions

 

Click here to visit our Free 24/7 Excel/VBA Help Forum where there are thousands of posts you can get information from, or you can join the Forum and post your own questions.

 

 Information Helpful? Why Not Donate.

 


Gallery



stars (0 Reviews)