Share via


Application.SheetChange Event (Excel)

Occurs when cells in any worksheet are changed by the user or by an external link.

Syntax

.SheetChange(Sh, Target)

An expression that returns a Application object.

Parameters

Name

Required/Optional

Data Type

Description

Sh

필수

Object

A Worksheet object that represents the sheet.

Target

필수

Range

The changed range.

Remarks

This event doesn't occur on chart sheets.

Example

This example runs when any worksheet is changed.

Private Sub Workbook_SheetChange(ByVal Sh As Object, _ 
 ByVal Source As Range) 
 ' runs when a sheet is changed 
End Sub

참고 항목

개념

Application Object

Application Object Members