title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Worksheet.Activate event (Excel) |
vbaxl10.chm502076 |
|
|
4fac262c-ea1a-1d2f-bd02-0537c843198c |
05/30/2019 |
medium |
Occurs when a workbook, worksheet, chart sheet, or embedded chart is activated.
expression.Activate
expression A variable that represents a Worksheet object.
Nothing
This event doesn't occur when you create a new window.
When you switch between two windows showing the same workbook, the WindowActivate event occurs, but the Activate event for the workbook doesn't occur.
This example sorts the range A1:A10 when the worksheet is activated.
Private Sub Worksheet_Activate()
Me.Range("a1:a10").Sort Key1:=Range("a1"), Order1:=xlAscending
End Sub
[!includeSupport and feedback]