Print specific pgs within sections of document

D

Deborah

I have a very large mail merge document and only want to re-print the 1st an 2nd page of each letter, Word will not allow me to do that. I tried putting in S49 for the section, but it prints the entire section (which I don't want). I tried printing out the pg number, but that doesn't work either. I searched for help and the closest I came was MS having a section on printing multiple-section documents. It said to read the entire article, but I couldn't find it. Can ANYONE please help. These are time sensitive letters and I need help as soon an possible. I really HATE to have to print all the document pages again.

Thank You
 
C

Cindy M -WordMVP-

Hi =?Utf-8?B?RGVib3JhaA==?=,
I have a very large mail merge document and only want to re-print the 1st an 2nd page of each letter, Word will not allow me to do that. I tried putting in S49 for the section, but it prints the entire section (which I don't want). I tried printing out the pg number, but that doesn't work either.
Did you try something like S49P1-S49P2 (or maybe the S and P elements need to be reversed; I never can keep that straight)?

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep 30 2003)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply in the newsgroup and not by e-mail :)
 
G

Graham Mayor

Time for some lateral thinking as this document is obviously a problem to
print bits from :(

I think I would be inclined to split up the merge into separate letters in a
dedicated folder using the code at:
http://www.gmayor.com/individual_merge_letters.htm

and then I would use the following macro to print out pages 1 and 2 of each
of the documents in that folder. This will at least automate the task and
save your patience :)

Sub PrintAll()
aDOC = Dir("D:\My Documents\Tests\Merge\*.DOC")
Do While aDOC <> ""
Application.PrintOut FileName:=aDOC, Range:=wdPrintRangeOfPages,
Pages:="1-2"
aDOC = Dir()
Loop
End Sub

Make sure the document path matches the path in the other macro (ie to the
location where the documents are saved), should you need to change it.

You may need this too - http://www.gmayor.com/installing_macro.htm


--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 

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