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.
Tony Jollans - 03 Jan 2008 18:33 GMT
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.

Signature
Enjoy,
Tony
> First I am using Word 2003. My macro needs section 2 to be printed twice
> in
[quoted text clipped - 5 lines]
> copy
> of Section 1 and one copy each of Sections 3-9.
David Sisson - 03 Jan 2008 18:37 GMT
> 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