Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1017 Bytes

Excel.Workbook.Activate(even).md

File metadata and controls

51 lines (29 loc) · 1017 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Workbook.Activate event (Excel)
vbaxl10.chm503074
vbaxl10.chm503074
Excel.Workbook.Activate
74bb6d8c-aec8-7bb6-5c30-9a20f9a7afe8
05/25/2019
medium

Workbook.Activate event (Excel)

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

Syntax

expression.Activate

expression A variable that represents a Workbook 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() 
 Range("a1:a10").Sort Key1:=Range("a1"), Order1:=xlAscending 
End Sub

[!includeSupport and feedback]