MailMergeDataSource.LastRecord property (Word)

Returns or sets the number of the last record to be merged in a mail merge operation. Read/write Long.

Syntax

expression. LastRecord

expression An expression that returns a 'MailMergeDataSource' object.

Example

This example merges the main document with records 2 through 4 and sends the merge documents to a new document.

With ActiveDocument.MailMerge 
 .DataSource.FirstRecord = 2 
 .DataSource.LastRecord = 4 
 .Destination = wdSendToNewDocument 
 .Execute 
End With

See also

MailMergeDataSource Object

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.