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