View Single Post
  #4   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 How to send each document as a separate print job in Word?

What to you want to do between each 10 letters?

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

"Kbrad32 via OfficeKB.com" u47076@uwe wrote in message
news:8c1bed41b4072@uwe...
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