Execute the merge to a new document and then with that document as the
active document, run a macro containing the following code:
Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
End With
It will send the document created for each record in the data source to the
printer as a separate print job.

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 using Word 2003 and a Kyocera 7000 printer with a document finisher
> that
[quoted text clipped - 12 lines]
>
> Simon