Application.MailMergeAfterRecordMerge event (Word)
Occurs after each record in the data source successfully merges in a mail merge.
Syntax
expression.MailMergeAfterRecordMerge (Doc)
expression A variable that represents an 'Application' object that has been declared with events in a class module. For information about using events with the Application object, see Using events with the Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Doc | Required | Document | The mail merge main document. |
Example
This example displays a message with the value of the first and second fields in the record that has just finished merging. This example assumes that you have declared an application variable called MailMergeApp in your general declarations and have set the variable equal to the Word Application object.
Private Sub MailMergeApp_MailMergeAfterRecordMerge(ByVal Doc As Document)
With Doc.MailMerge.DataSource
MsgBox .DataFields(1).Value & " " & _
.DataFields(2).Value & " is finished merging."
End With
End Sub
See also
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.