Mail Merge "serialization"

S

Scott

I need to add a "number" to each copy of a document I am preparing. I was
going to merge a field (for the serialization of each copy) from Excel but
the 12-page document merges into 700+ sections with no breaks for the printer
to know where to print another document. I want the document to print as
booklets, separating after section 12, for example. Any ideas?
 
D

Doug Robbins - Word MVP

If you run a macro containing the following code after executing the Merge
to a new document, it will send each 12 pages to the printer as a separate
print job:

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


--
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, originally posted via msnews.microsoft.com
 
S

Scott

Thanks, Doug! It worked like a charm, although Word crashed about halfway
through. But with each copy numbered, I knew exactly where to begin again.
 

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