Syntax
Private Sub Worksheet_PivotTableBeforeAllocateChanges(ByVal TargetPivotTable As PivotTable, ByVal ValueChangeStart
As Long, ByVal ValueChangeEnd As Long, Cancel As Boolean)
Enter
Code
End Sub
This event occurs before changes are applied
to a PivotTable.
Required Parameters
TargetPivotTable
The PivotTable that contains the changes to
apply.
ValueChangeStart
The index to the first change in the
associated PivotTableChangeList collection. The index is specified by the Order
property of the ValueChange object in the PivotTableChangeList collection.
ValueChangeEnd
The index to the last change in the
associated PivotTableChangeList collection. The index is specified by the Order
property of the ValueChange object in the PivotTableChangeList collection.
Cancel
False when the event occurs. If the event procedure
sets this argument to True, the changes are not applied to the PivotTable and
all edits are lost.