Printing contents of a section twice

T

tamis

First I am using Word 2003. My macro needs section 2 to be printed twice in
a certain order, for example, Client #1, two copies, Client #2, two copies,
Client#3, two copies, etc. The number of clients can vary, but the beginning
page number in the macro is always Page 2. Then I only need to print 1 copy
of Section 1 and one copy each of Sections 3-9.
 
T

Tony Jollans

I'm not sure what you mean about the different clients but to print the
sections you want, in the Pages: text box in the Print dialog, enter
"s2,s2,s1,s3-s9" (without the quotes) - the page number isn't relevant
unless you want to print partial sections.
 
D

David Sisson

First I am using Word 2003.  My macro needs section 2 to be printed twice in

Are these Word sections, or are they titles in your document.

If the first try this. Printout one full document, then run this.

Sub PrintSections()
Dim Response As String

Response = InputBox("How many copies?", "Enter number")

ActiveDocument.Sections(2).Range.Select

If Len(Response) <> 0 Then
ActiveDocument.PrintOut _
Range:=wdPrintSelection, _
copies:=Response
End If
End Sub
 

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