Check Method

Applies To

MailMerge object.

Description

Simulates the mail merge operation, pausing to report each error as it occurs.

Syntax

expression.Check

expression Required. An expression that returns a MailMerge object.

See Also

State property.

Example

This example checks the active document for mail merge errors.

theState = ActiveDocument.MailMerge.State
If theState = wdMainAndDataSource Or _
    theState = wdMainAndSourceAndHeader Then
    ActiveDocument.MailMerge.Check
End If