Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the number of the first record to be merged in a mail merge operation. Read/write Long.
expression. FirstRecord
expression A variable that represents a 'MailMergeDataSource' object.
This example merges the main document with records 1 through 3 and sends the merge documents to the printer.
With ActiveDocument.MailMerge
.DataSource.FirstRecord = 1
.DataSource.LastRecord = 3
.Destination = wdSendToPrinter
.Execute
End With
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.