I do not believe that there is anything that can be done in the mail merge
operation, but if the merge is executed to a new document, then the
following macro can be used to print each letter as a separate print job and
you then can probably get what you want:
Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Background:=False, Range:=wdPrintFromTo, From:="s" & i, _
To:="s" & i
Next i
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Does any version of Word allow page definitions to be defined with printer
> tray assignments so a multi page merged document will pull the appropriate
[quoted text clipped - 4 lines]
>
> Thanks in advance for your assistance.