C
craig friend via OfficeKB.com
Doug was VERY helpful and provided me with a macro that would run from the
merged document and print each record as a separate job. The problem I ran
into was that the template itself actually contains 3 sections per record. So
the macro;
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
Functions properly however, I beleive it's treating each section as a
separate print job. I need to somehow get it to print after every 3rd
section or determine another way of splitting up the jobs.
Any help would be greatly appreciated!
merged document and print each record as a separate job. The problem I ran
into was that the template itself actually contains 3 sections per record. So
the macro;
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
Functions properly however, I beleive it's treating each section as a
separate print job. I need to somehow get it to print after every 3rd
section or determine another way of splitting up the jobs.
Any help would be greatly appreciated!