How do I print 1st page letterhead 2nd plain in Word mail merge

T

Todd

I'm using an HP 8150 printer. I have a 2 page letter that I want the 1st page
on leterhead and the 2nd page on plain paper. After I perform the merge it
prints the 1st page on letterhead as I want. Then it prints all other pages
on plain paper instead of starting over with each new letter. It seems to
treat the merge as 1 big 20 page document instead of 10, two page letters.

I've been on the phone w/ HP for 2 hours and it seems to be in Word. If I
make a single 2 page doc w/ 1st letterhead and 2nd plain, then I tell the
printer to print 2 or more copies it will alternate leterhead and plain as I
want. But if I print from the merge function of Word it only prints the 1st
page on letterhead.

Thanks,
Todd
 
D

Doug Robbins - Word MVP

Use the following macro to print the document

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

That will cause Word to send each letter to the printer as a separate print
job.

--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
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