Share via


FirstRecord Property [Publisher 2003 VBA Language Reference]

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

expression.FirstRecord

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets the active record as the first record to be merged, and then merges three records ending with the record two records forward in the data source. This example assumes that the active publication is a mail merge document.

Sub RecordOne()
    With ActiveDocument.MailMerge
        .DataSource.FirstRecord = .DataSource.ActiveRecord
        .DataSource.LastRecord = .DataSource.ActiveRecord + 2
        .Execute Pause:=True
    End With
End Sub

Applies to | MailMergeDataSource Object