View Single Post
  #2   Report Post  
Posted to microsoft.public.word.mailmerge.fields
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Merged files not individually collated and stapled when word print

You should be able to do this with one of fellow MVP Doug Robbins handy
merge macros

Sub SplitMergeLetterToPrinter()

' splitter Macro
' Macro created 16-08-98 by Doug Robbins to print each letter created by a
' mailmerge as a separate file.
'

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


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


psy UK wrote:
Merged documents containing several records are not individually
collated and stapled when you use the mail merge feature to print in
word, i.e. 1 document is printed and stapled on the printer. I have
seen the knowledge based article detailing how to do the same thing
in Publisher by changing values in regedit.

Does a similar answer exist in relation to word.

Many thanks