View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Mail Merge Back to Back Printing Issue

You could merge to a new document then use a macro to print each letter as a
separate print job eg

Sub SplitMergeLetterToPrinter()

' splitter Macro
' Macro created 16-08-98 by Doug Robbins to print each letter created by a
' mailmerge as a separate file.
'
Letters = ActiveDocument.Sections.Count
counter = 1
While counter Letters
ActiveDocument.PrintOut Background:=False, Range:=wdPrintFromTo, _
From:="s" & format(counter), To:="s" & format(counter)
counter = counter + 1
Wend
End Sub


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Davros09 wrote:
We are having difficulties printing a mail merge in Word 07.

The letter being merged is 3 pages in length which we are trying to
print back to back. When merging and printing however, the first
page of each new letter is printing on the back of page 3 of the
previous one rather than starting on a new sheet (which earlier
versionsof Word had no problem with).

Is there anything we can do (short of printing everything on
individual sheets)?