SelectionChange Event

Microsoft Access Visual Basic

SelectionChange Event

       

Occurs whenever the user makes a new selection in a PivotChart view or PivotTable view.

Private Sub Form_SelectionChange()

Remarks

The user cannot cancel this event.

Example

The following example demonstrates the syntax for a subroutine that traps the SelectionChange event.

Private Sub Form_SelectionChange()
    MsgBox "The selection has changed!"
End Sub