×

Userform Events

What are Events?

Anything you do in to trigger an excel file is an event (an action). Example: If you want a greeting message ‘Good Day’ whenever an excel file is opened. Or if you want to capture the date and time automatically whenever a specific range of cells are altered etc.

Few examples of excel event are as follows:

  • Opening a workbook
  • Going to a specific worksheet
  • Editing a worksheet
  • Entering data
  • Saving/closing file

We can use these events by adding VBA codes (event handlers) to make excel perform in a certain way.

Userform Events

Userform events trigger wherever you initialize or display the form, drag and drop the controls and perform some actions. Some of the most used workbook actions that trigger the Event-

Activate: When you activate or display the userform.

AddControl: When any userform’s control is added at the run time

BeforeDragOver: When the mouse pointer is hovering over the form and the drag and drop property is in development.

BeforeDragOrPaste: When you click the left button of the mouse, and the data is either dropped or pasted.

Click: When the left button of the mouse is clicked while the mouse pointer is over the userform.

DblClick: When the left button of the mouse is double clicked while the mouse pointer is over the userform.

Deactivate: When the userform loses focus because a subform is displayed.

Initialize: When you load the userform into memory (or you have run the userform’s code).

KeyDown: When a key is pressed while exhibiting the userform.

KeyPress: When you press an Ansi key while exhibiting the userform.

KeyUp: When you release a key while exhibiting the userform

Layout: When the size of the userform or any control is altered at run-time.

MoveDown: When the mouse button is pressed while the mouse pointer is over the userform.

MouseMove: When the mouse pointer is moved from one place to another over the userform.

QueryClose: Before you close the userform or unload it from the memory.

RemoveControl: When you remove any control from the userform at run time.

Resize: When you resize the userform.

Scroll: When you scroll the userform.

Terminate: When userform is removed from memory to clean up the memory space.

Zoom: When you zoom the userform.

Example 1

‘UserForm Deactivate event
 Sub UserForm_Deactivate()
     UserForm.Caption = "Deactivating the UserForm!"
 End Sub 

Example 2

‘UserForm click event
 Sub UserForm_Click()
     Load UserForm
     UserForm.StartUpPosition = 2
     UserForm.Show
 End Sub 

Example 3

‘UserForm click event
 Private Sub UserForm_Resize()
     UserForm1.Caption = "Click me to resize"
 End Sub 

Workbook Events

Events for workbooks need to be stored in the ‘ThisWorkbook’ module whereas events for a worksheet need to be stored in the code module for that specific sheet only.

To look at Workbook events –
• Open Visual Basic editor
• Go to ‘ThisWorkbook’ module
• From the left drop-down, select ‘Workbook’
• Now you will notice that on the right drop-down, ‘Open’ is present and in the program editor a code shell has been automatically appeared (starts with Private Sub and ends with End Sub)
• We can add anything we want excel to perform whenever the excel file is opened
• In order to look at other events available, go to the right-drop down and click on the ‘Combo Box’ to see more options

Some of the most used workbook actions that trigger the Event-

• Open - The workbook is opened.
• Activate - The workbook is activated.
• BeforeClose - The workbook is about to be closed.
• BeforeSave - The workbook is about to be saved.
• NewSheet – Whenever a new sheet is created in the workbook.
• SheetActivate – Whenever any sheet in the workbook is activated.
• SheetChange - Any worksheet in the workbook is edited/changed by the user
• WindowActivate - Any window of the workbook is activated.

Workbook Open Event Examples

This event is triggered when the workbook is opened, and this executes the Workbook_Open procedure. As stated earlier, it can be used to achieve a lot of things like –

• A Greeting Message
• Activating a specific sheet or a specific cell in a sheet
• Saving date and time or name of the user who opened the workbook

But for Workbook_Open event to fire, VBA macros should be enabled – so if the default setting is that the macros are disabled, whenever you open the file, the event will not execute on its own (till the time the macros are not enabled).

The following example gives a greeting message whenever someone opens the file with today’s date –

Private Sub UserForm_Resize()
     UserForm1.Caption = "Click me to resize"
 End Sub 

Open Event Examples

This event is triggered when the workbook is opened, and this executes the Workbook_Open procedure. As stated earlier, it can be used to achieve a lot of things like –

• A Greeting Message
• Activating a specific sheet or a specific cell in a sheet
• Saving date and time or name of the user who opened the workbook

But for Workbook_Open event to fire, VBA macros should be enabled – so if the default setting is that the macros are disabled, whenever you open the file, the event will not execute on its own (till the time the macros are not enabled).

The following example gives a greeting message whenever someone opens the file with today’s date –

Example 1


Private Sub Workbook_Open()
Msg = “Hello!! ” & Now()
MsgBox Msg, vbInformation
End Sub

Below is an example of saving a person’s name when he opens the file – as soon as the person opens an excel file which has the below macro, VBA will open another file ‘Module 10 - VBA.xlsx’ which will store the name of the person who opened the file along with the time. This type of code is used a lot to keep an audit trail of who accesses the file -

Example 2

Private Sub Workbook_Open()
Dim xOpened As String
Dim xtime As String
xOpened = Environ("Username")
xtime = Format(Now, "dd/mm/yyyy hh:mm")
Workbooks.Open ("C:\PATH TO SECOND FILE\Module 10 - VBA.xlsx")
Workbooks("Module 10 - VBA.xlsx").Activate
i = Workbooks("Module 10 - VBA.xlsx").Sheets("Audit").Range("A65536").End(xlUp).Row
Workbooks("Module 10 - VBA.xlsx").Sheets("Audit").Cells(i + 1, 1).Value = xOpened
Workbooks("Module 10 - VBA.xlsx").Sheets("Audit").Cells(i + 1, 2).Value = xtime
Workbooks("Module 10 - VBA.xlsx").Save
Workbooks("Module 10 - VBA.xlsx").Close
End Sub

You can also use conditional constraints or loops –

Example 3


Sub Workbook_Open()
If Weekday(Date, vbSunday) = 2 Then
Msg = "Hello!!" & Now
MsgBox Msg, vbInformation
End If
End Sub

We can also select a specific cell when the excel file is opened –

Example 4

Private Sub Workbook_Open()
Worksheets("Sheet1").Range("D4").Select
End Sub

Newsheet Event

The following procedure executes whenever a new sheet is added to the workbook. The sheet is passed to the procedure as an argument/parameter. Because a new sheet can be either a workshe or a chart sheet, this procedure determines the sheet type. If it’s a worksheet, it inserts a date and time stamp in cell A1.

Example 1

Private Sub Workbook_NewSheet(ByVal Sh As Object)
If TypeName(Sh) = “Worksheet” Then _
Range(“A1”) = “Sheet added “ & Now()
End Sub

BeforeSave Event

This event triggers just before the workbook is saved – so as soon as you press Cntrl+S or click on Save button, the event will trigger.
Below is an example of a file which is being saved for the first time because that will throw the prompt of ‘Save As’ (if a file is in read-only mode, then also the below event will trigger) –

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If SaveAsUI Then
MsgBox "Save the file with xlsm i.e. macro-enabled format for enabling macros."
End If
End Sub

If the Save As box appears, i.e. the file is being saved for the first time (or in read-only mode).

WorkSheet Events

These events are for individual worksheets and are hence stored in the code module of the worksheet for which we plan to use them –

• Activate - The worksheet is activated.
• BeforeDoubleClick - The worksheet is double-clicked.
• BeforeRightClick - The worksheet is right-clicked.
• Calculate - The worksheet is calculated (or recalculated).
• Change - Cells on the worksheet are changed by the user.
• PivotTableUpdate A PivotTable on the worksheet has been updated.
• SelectionChange The selection on the worksheet is changed.

Worksheet_Change Event

It will trigger whenever a specified range or cell in a worksheet is changed by the user (not by a formula) – the code below will add the current date and time to column A of the row where change has taken place. The range we are interested in is from column B to column G – so if a user makes any changes to say cell B5, current date and time will be added to A5 – any changes to cell G10 and date and time will be added to A10 (and so on..)

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B:G")) Is Nothing Then
Cells(Target.Row, 1) = Now
End If
End Sub

Target argument/parameter has been defined as a Range object and refers to the cells which were changed – so if the user is making any changes to cell B5 – target variable will hold the value B5 – using intersect function, VBA then checks if there is an intersect i.e. common cell between target and range we have specified – and using ‘Not’ and ‘Nothing’ we are just saying that if there is an intersect, we want to add the date and current time to the row in which change took place.

Worksheet_Activate Event

This event executes whenever we go back to a specific sheet (which has the VBA code in its module) – the below example just throws a message box cautioning the user against deleting any formulas while he is on this sheet –

Private Sub Worksheet_Activate()
MsgBox "Do not delete the formula", vbOKOnly
End Sub


Related Topics

VBA Charts

What is a Chart? A chart is used to visually show numbers or data in a spreadsheet (or spread over multiple spreadsheets) so that the end-user can look at the chart...

3 minutes read.

Userform Events

What are Events? Anything you do in to trigger an excel file is an event (an action). Example: If you want a greeting message ‘Good Day’ whenever an excel file is...

7 minutes read.

VBA Global Variable

What is Global Variable? The Global Variables in VBA refers to the variables declared before the start of any macro. They are defined outside the functions and are used by all the functions or...

6 minutes read.

Basics of Userform

A User Form is a built-in customized dialog box that fetches data from the user through a user-friendly dialog box or window that makes up part of an application's user interface. It...

9 minutes read.

Excel VBA Round Function

VBA Round Function: The Round function in VBA rounds a number to a specified number of decimal places and returns the number. Syntax Round (Number, [NumDigitsAfterDecimal]) Parameter Number (required) –This parameter represents a numeric value one wants...

1 minute read.

VBA Subscript out of Range

What is Subscript out of Range? The VBA Subscript out of Range error (which is also called as Run-Time Error 9) mostly triggers when the user selects any cell, sheet, or workbook which does...

5 minutes read.

Excel VBA StrReverse Function

The StrReverse function returns a String after reversing the given String. Syntax StrReverse (Expression) Parameter Expression (required) – This parameter represents the String that you want to reverse. Return This function returns a String after reversing the given String. Example...

1 minute read.

Excel VBA CDbl Function

VBA CDbl Function: The CDbl function in VBA converts an expression into a Double data type. Syntax CDbl (Expression) Parameter Expression (required) - This parameter represents the expression that that you want to convert to...

1 minute read.

Excel VBA Hour Function

The hour function in VBA returns the hour element for the specified time. Syntax Hour (Time) Parameter Time (required) – This parameter represents the time. Return This function returns the hour element for the specified time. Example 1 Sub HourFunction_Example1() ...

1 minute read.

Procedures in VBA

Procedures in VBA A procedure is a block of statements or units of computer code that performs some action. It is enclosed with a declaration statement, and its primary purpose is to carry out...

3 minutes read.

Excel VBA Functions

What is a function? A function is also called a procedure, but it is not a sub procedure, it’s a function procedure. You have already been using some function in Excel,...

7 minutes read.

VBA UBound

VBA UBound  The UBound or Upper Bound function in VBA is used to specify the length of an array and returns the highest subscript for a dimension for the specified array. It is...

3 minutes read.

Excel VBA User-Defined Functions

User-Defined Functions One of the advantages of VBA is that you can create your own functions using macros. These functions can be called and used as other functions in excel and use them. You can...

3 minutes read.

CodeIgniter Architecture

Here we will understand the architecture and working of the CodeIgniter application, which helps you to elaborate all steps in simple ways. As the above image represents that whenever a request comes from the...

2 minutes read.

Excel VBA InStrRev Function

VBA InStrRev Function: The InStrRev function in Excel VBA returns an integer representing the position of a substring within the specified string if the substring is fount else it returns...

2 minutes read.

Excel VBA Error Function

VBA Error Function: The Error function in VBA returns the error message corresponding to a supplied error code. Syntax Error ([ErrorNumber]) Parameter ErrorNumber (optional) – This parameter represents the required error number. By default, the...

1 minute read.

Excel VBA IsMissing Function

VBA IsMissing Function: The IsMissing function in VBA checks if any parameter to a procedure is missing or not. It returns a Boolean value True if the specified parameter has not been...

1 minute read.

VBA ActiveCell Property

What is the ActiveCell Property? The active cell signifies the active selected cell in the current worksheet. The Active property acts as a reference point and is used to move the cell cursor...

5 minutes read.

VBA Regex

What is a Regex? Regex stands for Regular Expression is basically a pattern matching strings within another string. They are supported in many languages, including .net, C++, Python, etc. They are...

5 minutes read.

Excel VBA IsEmpty Function

VBA IsEmpty Function: The IsEmpty function in VBA returns a Boolean value showing whether the specified Expression is Empty (variant has not been declared) or not. Syntax IsEmpty (Expression) Parameter Expression (required)- This parameter...

1 minute read.