You can print by page or by section or both by putting the page and/or
section number in the print pages box. If you want to print less than a
page, then you'll have to copy the bit you want to print to a new document
and print that. The following macro will copy selected text to a new
document.
Sub CopySelectedToNewDoc()
Selection.Copy
Documents.Add Template:="Normal", NewTemplate:=False, DocumentType:=0
Selection.Paste
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site
www.gmayor.com
Word MVP web site
www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>