1) It won't let me comment out the range for first and last doc. I tried to comment out the 4 lines (including the with)

2) Doc 2 (the merged document is still left open if i choose mergetonewdoc. should i leave it open?

VB Code:
  1. With oDoc.MailMerge.DataSource   '
  2.         .FirstRecord = 1                                   '
  3.         .LastRecord = 3                                   '
  4.     End With                                                '
  5.     With oDoc.MailMerge
  6.         .Destination = wdSendToPrinter 'wdSendToNewDocument;wdSendToPrinter; wdSendToFax; wdSendToEmail
  7. '        .Destination = wdSendToNewDocument 'wdSendToNewDocument;wdSendToPrinter; wdSendToFax; wdSendToEmail
  8.         .Execute True
  9.     End With
  10.     '
  11.     oDoc.Close False
  12.     Set oDoc = Nothing
  13.     moApp.Quit
  14.     Set moApp = Nothing