Form.BeforeQuery event (Access)

Occurs when the specified PivotTable view queries its data source.

Syntax

expression.BeforeQuery

expression A variable that represents a Form object.

Return value

Nothing

Remarks

This event occurs quite frequently. Some examples of actions that trigger this event include adding fields to the PivotTable view, moving fields, sorting, or filtering data.

Example

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

Private Sub Form_BeforeQuery() 
 MsgBox "The PivotTable view is about to query its data source." 
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.