LastRecord Property

Microsoft Word Visual Basic

LastRecord Property

       

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

expression.LastRecord

expression   Required. An expression that returns a MailMergeDataSource object.

Example

This example merges the main document with data 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