Stapling a mail merge

B

Brian

HI,

I have a printer which staples. When doing a mail merge with multiple
recipents and chosse to staple it staples all the recipents as one.

Is there a way to separate the recipents and staple separately.

The printer is a HP9000mfp and I am using Word 2003.

Regards,
Brian.
 
G

Graham Mayor

The following macro, written by fellow MVP Doug Robbins, should print each
document as a separate entity thus avoiding the problem. Merge to a new
document then run the macro on that document.

Sub SplitMergeLetterToPrinter()
Letters = ActiveDocument.Sections.Count
Counter = 1
While Counter < Letters
ActiveDocument.PrintOut Background:=False, Range:=wdPrintFromTo, _
From:="s" & Format(Counter), To:="s" & Format(Counter)
Counter = Counter + 1
Wend
End Sub

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

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