mail merge with word 2007 and a riso

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

Graham Mayor

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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