If your document contains 2 sections, use
Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count Step 2
.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i + 1
Next i
End With
If it contains n sections, replace 2 with n and 1 with n - 1

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 have been using the formula to be able to staple multi pages of a merged
>doc
[quoted text clipped - 7 lines]
> seems to be difficult to reformat
> is there anyway to in vb merge to doc using some insertbreak? please help
Debi - 14 Sep 2005 22:18 GMT
thank you, you have saved my job.

Signature
dm
> If your document contains 2 sections, use
> Dim i As Long
[quoted text clipped - 17 lines]
> > seems to be difficult to reformat
> > is there anyway to in vb merge to doc using some insertbreak? please help
amie - 15 Sep 2005 16:59 GMT
IT GETS BETTER!
i just found out that this document("DOCUMENT2") which needs to be stapled
and duplexed needs to have a page from another merge document("DOCUMENT1"),
printed before each stapled portion. is that possible to reference to print
1ST RECORD OF merged DOCUMENT1 within a macro within DOCUMENT2? OR SHOULD I
COPY AND PASTE DOCUMENT1 INTO DOCUMENT2 AND MERGE TOGETHER(THE DATABASE IS
THE SAME FOR BOTH), BUT I WOULDN'T SEE HOW YOU COULD TELL THE PRINTER TO NOT
STAPLE AND DUPLEX THAT FIRST PAGE APART FROM THE OTHER PAGES. IF THERE ISN'T
A WAY TO DO THIS, HOW ABOUT PREPRINTING DOCUMENT1 AND ASKING THE PRINTER TO
PRINT A SEPERATOR SHEET(WHICH IS USUALLY A BLANK SHEET THAT PRINTS BETWEEN
SPOOLS). OF COURSE I RUN INTO THE PROBLEM OF GETTING THEM OUT OF ORDER IF THE
PRINTER JAMS. WHICH DO YOU THINK WILL WORK. I PREFER TO LEAVE DOCS AS IS
WITHOUT COPYING AND PASTING, BUT WILL DO WHICHEVER YOU THINK WILL WORK BEST.
> If your document contains 2 sections, use
> Dim i As Long
[quoted text clipped - 17 lines]
> > seems to be difficult to reformat
> > is there anyway to in vb merge to doc using some insertbreak? please help
Doug Robbins - 16 Sep 2005 00:13 GMT
If you have the text of the two documents in the one mailmerge main
document, Word will have no idea of the origin of the parts of the document.

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
> IT GETS BETTER!
> i just found out that this document("DOCUMENT2") which needs to be stapled
[quoted text clipped - 42 lines]
>> > is there anyway to in vb merge to doc using some insertbreak? please
>> > help
amie - 16 Sep 2005 01:01 GMT
the only reason i am hesitant to copy and paste, is sometimes it seems that
some of the formatting is lost. but how do you create a macro to do this?
> If you have the text of the two documents in the one mailmerge main
> document, Word will have no idea of the origin of the parts of the document.
[quoted text clipped - 45 lines]
> >> > is there anyway to in vb merge to doc using some insertbreak? please
> >> > help
Doug Robbins - 16 Sep 2005 05:18 GMT
If, as it seems from your later post, you want document 2 stapled by itself
with the relevant document 1 interleafed between each stapled document 2,
unless you have a really fancy printer, I think you will have to do the
collating manually.

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
> the only reason i am hesitant to copy and paste, is sometimes it seems
> that
[quoted text clipped - 58 lines]
>> >> > is there anyway to in vb merge to doc using some insertbreak? please
>> >> > help