Destination Property Example

This example sends the results of a mail merge operation to a new document.

Set mm = ActiveDocument.MailMerge
If mm.State = wdMainAndDataSource Then
    mm.Destination = wdSendToNewDocument
    mm.Execute
End If