Add a blank page separator

S

S N

How do I add a blank page automatically as a separator after every 15 pages
when printing a document of 250 pages?
 
D

Doug Robbins - Word MVP

Use a macro containing the following code to print the document:

Dim i As Long
Dim blank As Document
For i = 1 To 240 Step 15
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:=i, To:=i + 15
Set blank = Documents.Add
With blank
.PrintOut
.Close wdDoNotSaveChanges
End With
Next i


--
Hope this helps,

Doug Robbins - Word MVP

Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.
 

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