Skip to content

Files

Latest commit

 

History

History
46 lines (27 loc) · 977 Bytes

Excel.Chart.Activate(even).md

File metadata and controls

46 lines (27 loc) · 977 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.Activate event (Excel)
vbaxl10.chm500073
vbaxl10.chm500073
Excel.Chart.Activate
7b878d1b-3059-93cb-389a-a2633f613a4d
04/16/2019
medium

Chart.Activate event (Excel)

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

Syntax

expression.Activate

expression A variable that represents a Chart object.

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"), Order:=xlAscending 
End Sub

[!includeSupport and feedback]