How do I separate mail merge documents(pcl code), so each documen.

P

psy UK

Using the hp 3000stacker to staple documents, I want to print a mail merge
letter and have each letter stapled. The printer only sees the print job as
one document. I assume a PCL command is needed embedded in word to tell the
printer to print each document and staple it.
 
D

Doug Robbins

Execute the merge to a document and then run the following macro over that
document:

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


--
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
 
A

Archie

I have used Doug Robbins macro but I am also printing a Sequential Number for
each stapled document . For some reason when this document prints , it starts
the numbering sequence at 12 then prints numbers 1-11 at the end of the
printed mail meged document . Is their a reason for this and can this
document be presented to print from 1 as the start ,instead of 12 .
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top