Thread: Mailmerge Print
View Single Post
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Mailmerge Print

If you use a macro containing the following code, it will send each 3 page
document to the printer as a separate print task so that the printer will be
able to perform its finishing functions on each document:

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


--
Hope this helps

Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to avail yourself of my
services on a paid, professional basis.

"SheriR." wrote in message
...
I have a three page document that I am trying to print/staple for each of
the
people in the "database". I'm assuming that Word should be able to read
the
end of each 3 page document and then staple it before moving on to the
next
record. However, when I try to do this, every record is printed & then
all
stapled together. I don't know if this is a Word issue or a printer issue
or
if it just can't be done. Does anyone know? I've asked several people in
my
office with no success.