View Single Post
  #3   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Kbrad32 via OfficeKB.com Kbrad32 via OfficeKB.com is offline
external usenet poster
 
Posts: 14
Default How to send each document as a separate print job in Word?

Thanks a bunch...do you know if you can adjust it to print 10 at a time? I
have over 1100 pages.

Doug Robbins - Word MVP wrote:
If you execute the merge to a new document and then run a macro containing
the following code, it will send each letter to the printer as a
separate print job, so that the printer can then do its thing as it does
when printing a single letter.

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

How to send mail merge document as a separate print job in Word? Any help
will be greatly appreciate.

Thanks,
Kbrad32


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...merge/200810/1