Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.04 KB

Excel.Worksheet.Activate(even).md

File metadata and controls

51 lines (29 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Worksheet.Activate event (Excel)
vbaxl10.chm502076
vbaxl10.chm502076
Excel.Worksheet.Activate
4fac262c-ea1a-1d2f-bd02-0537c843198c
05/30/2019
medium

Worksheet.Activate event (Excel)

Occurs when a workbook, worksheet, chart sheet, or embedded chart is activated.

Syntax

expression.Activate

expression A variable that represents a Worksheet object.

Return value

Nothing

Remarks

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.

Example

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]