mail merge with word 2007 and a riso

  • Thread starter Thread starter stephenryan50
  • Start date Start date
S

stephenryan50

I'm having problems trying to mail merge a word 2007 document with a riso.
all goes well and I can preview all the documents and all looks good until I
try to finish and print it on a riso, and nothing happens. It works on word
2003 but not the new version. can anyone help?
 
Can you merge to a new document?
If so, try using the following macro from fellow MVP Doug Robbins to split
that document to the printer as separate jobs

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top