Share via


Workbook.SheetPivotTableChangeSync Event (Excel)

Occurs after changes to a PivotTable.

Version Information

추가된 버전: Excel 2010

Syntax

.SheetPivotTableChangeSync(Sh, Target)

A variable that represents a Workbook object.

Parameters

Name

Required/Optional

Data Type

Description

Sh

필수

Object

The worksheet that contains the PivotTable.

Target

필수

PivotTable

The PivotTable that was changed.

Return Value

Nothing

Remarks

The PivotTableChangeEvent occurs during most changes to a PivotTable, so that you can write code to respond to user actions, such as clearing, grouping, or refreshing items in the PivotTable.

Example

The following code example displays a message box that shows the name of the PivotTable the user changed.

Private Sub Workbook_SheetPivotTableChangeSync(ByVal Sh As Target, Target As PivotTable) 
 
With Target 
 MsgBox "You performed an operation in the following PivotTable: " & .Name & " on " & Sh.Name 
End With 
 
End Sub

참고 항목

개념

Workbook Object

Workbook Object Members