Merge multiple pages into multiple sets How to staple?

M

Madonna

Using word, doing merge with master being multiple pages.
How do I print multiple sets with each being stapled?
 
D

Doug Robbins

If you run the following macro on the document created by executing the
merge, it will sent the set of pages created for each record to the printer
as a separate print job which should allow each set to be stapled:

Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
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
 
M

Madonna

Doug, that you so much for responding.

I am not a user of macros, but it is time to learn !!!

I will let you know.

Thank you again, and regards,
Madonna
Indiana
 
M

Madonna

The sets did not staple.

Doug Robbins said:
If you run the following macro on the document created by executing the
merge, it will sent the set of pages created for each record to the printer
as a separate print job which should allow each set to be stapled:

Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
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
 
M

Madonna

I'm sorry. I did not know that there was a possible fee for obtaining help
here.

Thanks anyway.
 

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