Workbook.SheetPivotTableChangeSync event (Excel)

Occurs after changes to a PivotTable.

Syntax

expression.SheetPivotTableChangeSync (Sh, Target)

expression A variable that represents a Workbook object.

Parameters

Name Required/Optional Data type Description
Sh Required Object The worksheet that contains the PivotTable.
Target Required 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 that 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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.