Hi Derek,
You could do that with a macro like:
Code:
Sub PrintMe()
Dim Rng As Range
Set Rng = Selection.Range
Rng.Sections(1).Range.Select
Application.PrintOut Range:=wdPrintSelection
Rng.Select
End Sub
Note: The above code sends the selected Section direct to the printer without invoking the Print dialogue box.