View Single Post
  #4   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Not_a_notes_fan Not_a_notes_fan is offline
external usenet poster
 
Posts: 5
Default Mailmerge using different printer trays

I have tried your suggestion which said to use section breaks to no avail. I
have also tried merging to a new document and used a maco found elsewhere on
the forum to seperate the pages still with no luck. The macro is he

Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
End With

Now unsure what else to do.

An alternative approach would be to use a section break instead of a page
break and set up section 1 to print to one tray and section tray to print to
the other tray. Then test printing direct to the printer. If you want,
output the merge to a new document and verify that each section is
associated with the correct tray.