How to print collated merged forms

S

samanthahitchins

I am using Wrod to merge form letters. i want to print 20 copies of each
page collated but, when i print them it takes the page as sections and if i
want to print i have to print each page (i.e. 1-1, 2-2, 3-3...) this takes me
three times as long. how can i print my entire merged list with our having
to print each page seperatly?
 
D

Doug Robbins - Word MVP

If I understand correctly what it is that you want to do - print 20 copies
of the first page and the 20 of the second etc. then the following macro
will do it for you:

Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.ActiveWindow.PrintOut _
Range:=wdPrintFromTo, From:="s" & i, To:="s" & i, Copies:=20
Next i


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

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