Oh. You didn't ask that. Did you try doing this manually with the
macro recorder on, and then look at the recorded macro? I did this.
Result shown below. You can clean it up to remove the unnecessary
settings that are automatically recorded.
Basically, it was
GoTo Page 1
Print current page 1 copy
GoTo Page 2
Print current page 4 copies
Assign this macro to a button, or something.
Read more in "Help" about macro recording.
Sub Macro5()
'
' Macro5 Macro
' Macro recorded 28/06/2004 by Rob Schneider
'
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="1"
ActivePrinter = "PostScript File"
Application.PrintOut FileName:="", Range:=wdPrintCurrentPage, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
ManualDuplexPrint:=False, Collate:=True, Background:=True,
PrintToFile:= _
False, PrintZoomColumn:=0, PrintZoomRow:=0,
PrintZoomPaperWidth:=0, _
PrintZoomPaperHeight:=0
ActiveWindow.ActivePane.LargeScroll Down:=2
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="2"
Selection.Find.ClearFormatting
Application.PrintOut FileName:="", Range:=wdPrintCurrentPage, Item:= _
wdPrintDocumentContent, Copies:=4, Pages:="",
PageType:=wdPrintAllPages, _
ManualDuplexPrint:=False, Collate:=True, Background:=True,
PrintToFile:= _
False, PrintZoomColumn:=0, PrintZoomRow:=0,
PrintZoomPaperWidth:=0, _
PrintZoomPaperHeight:=0
End Sub