Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub PrintEachRecipient()
Dim i As Integer
'
With ActiveDocument.MailMerge
'SHOW ME THE DATA, rather than the merge codes
.ViewMailMergeFieldCodes = False
For i = 1 To .DataSource.RecordCount
ActiveDocument.PrintOut
.DataSource.ActiveRecord = wdNextRecord
Next
End With
End Sub