I have this printer that staples every print job.
I have this mail merge document where every three pages is directed to a new
recipient.
If I send the mail merge document to the printer it will print the entire
128 pages and staple them all together.
What I want is the printer to staple every three pages together. The printer
Konica has no solution for it. And I wanted to know if MS Word via VBA or
anything can send every three pages of its document as a separate print job.
The following will send each letter to the printer as a separate print job:
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
>I have this printer that staples every print job.
> I have this mail merge document where every three pages is directed to a
[quoted text clipped - 7 lines]
> anything can send every three pages of its document as a separate print
> job.
ksen - 01 Dec 2004 13:59 GMT
Thank you very much Doug, it worked perfectly!
-Ksen
> The following will send each letter to the printer as a separate print job:
>
[quoted text clipped - 14 lines]
> > anything can send every three pages of its document as a separate print
> > job.