Worksheet.PivotTableChangeSync Event (Excel)
Occurs after changes to a PivotTable.
추가된 버전: Excel 2010
식 .PivotTableChangeSync(Target )
식 A variable that represents a Worksheet object.
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Target |
필수 |
The PivotTable that was changed. |
Nothing
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.
The following code example displays a message box that shows the name of the PivotTable the user changed.
Private Sub Worksheet_PivotTableChangeSync(ByVal Target As PivotTable)
With Target
MsgBox "You performed an operation in the following PivotTable: " & .Name
End With
End Sub