If you execute the merge to a new document and then use a macro containing
the following code on that document, it will send each letter to the printer
as a separate print job, which may allow you to achieve what you want.
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

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
>I have a 2-page document, each page of which will be personalized via mail
> merge. I need to print the first and second pages on different paper for
[quoted text clipped - 7 lines]
>
> Thanks in advance.
Shelly - 18 May 2006 13:51 GMT
Thank you for the information. However, I have never worked with macros so I
have no idea how to include it in the merged document.
> If you execute the merge to a new document and then use a macro containing
> the following code on that document, it will send each letter to the printer
[quoted text clipped - 18 lines]
> >
> > Thanks in advance.
Peter Jamieson - 18 May 2006 15:12 GMT
See
http://word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm
Peter Jamieson
> Thank you for the information. However, I have never worked with macros so
> I
[quoted text clipped - 28 lines]
>> >
>> > Thanks in advance.
Graham Mayor - 18 May 2006 15:24 GMT
You don't 'include it in the document' you run it with the merged docuemnt
open. See http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Thank you for the information. However, I have never worked with
> macros so I have no idea how to include it in the merged document.
[quoted text clipped - 31 lines]
>>>
>>> Thanks in advance.