Individual pdfs for a Mail Merge in Word

P

Please Help

Greetings,

How do I create a single pdf file for each record in my mail merge? I can
create a single large pdf file for all of my records in the mail merge, but
this is not my objective.

Any hints or instructions are greatly appreciated.

Regards.
 
D

Doug Robbins

Execute the merge to a new document and then use a macro such as the
following to "print" each record separately to your ".pdf printer"

Dim i as Long
For i = 1 to ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i


--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - 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