Something may have changed about the printing of the Page 1 is concerned.
The following macro will however print all of the page 1's in the one print
job so that if you are printing to .pdf, just one file will be created:
Dim i As Long, pstring As String
pstring = "p1s1"
For i = 2 To ActiveDocument.Sections.Count
pstring = pstring & ",p1s" & i
Next i
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:=pstring
I think however that you are mistaken by thinking that before you "could
print and each section would be duplexed and collated
without having to run a macro." A macro has always been required for that.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> I'm currently using Word 2003 and am curious if there was an update that
> changed they way I used to be able to print documents...
[quoted text clipped - 25 lines]
>
> Thank you for any help you can provide!
Kara - 21 Dec 2005 17:28 GMT
Thank you for your reply. The macro worked perfectly to create one PDF
document.
I don't know why I thought it would work before. Maybe I just got lucky and
always had the right number of pages.
Thanks again and happy holidays!
> Something may have changed about the printing of the Page 1 is concerned.
> The following macro will however print all of the page 1's in the one print
[quoted text clipped - 40 lines]
> >
> > Thank you for any help you can provide!