How to print a 2000 page word document and staple every 6 pages?

G

Graham Mayor

If your printer is unable to collate the pages in groups of 6 for stapling,
then you should be able to split the document into groups of six pages using
a macro to treat each group as a separate print job - something along the
lines of:

Sub SplitToPrinter()
Selection.EndKey wdStory
Pages = Selection.Information(wdActiveEndPageNumber)
counter = 1
While counter < Pages
ActiveDocument.PrintOut Background:=False, Range:=wdPrintFromTo, _
From:=format(counter), To:=format(counter + 5)
counter = counter + 6
Wend
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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