I created this for someone else who want to do something similar.
Dim sourcea As Document, sourceb As Document, target As Document, Pages
As Integer, Counter As Integer, targetrange As Range 'targetrange added
Dim evenpage As Range
Set sourcea = Documents.Open(FileName:="...")
sourcea.Repaginate
Pages = ActiveDocument.BuiltInDocumentProperties(wdPropertyPages)
MsgBox Pages
Set sourceb = Documents.Open(FileName:="...")
Set target = Documents.Add
target.PageSetup.LeftMargin = sourcea.PageSetup.LeftMargin
target.PageSetup.RightMargin = sourcea.PageSetup.RightMargin
target.PageSetup.TopMargin = sourcea.PageSetup.TopMargin
target.PageSetup.BottomMargin = sourcea.PageSetup.BottomMargin
target.AcceptAllRevisions
Counter = 0
While Counter < Pages
sourcea.Activate
ActiveDocument.Bookmarks("\page").Range.Copy
Set targetrange = target.Range
targetrange.Start = targetrange.End
targetrange.Paste
ActiveDocument.Bookmarks("\page").Range.Cut
sourceb.Activate 'Assumed to be the document containing the even
pages
Selection.EndKey Unit:=wdStory 'Line of code added to start from the
end of the document
ActiveDocument.Bookmarks("\page").Range.Copy
Set targetrange = target.Range
targetrange.Start = targetrange.End
targetrange.Paste
targetrange.Start = targetrange.End
targetrange.InsertBreak Type:=wdPageBreak
Set evenpage = ActiveDocument.Bookmarks("\page").Range
evenpage.Start = evenpage.Start - 1
evenpage.Delete
Counter = Counter + 1
Wend
sourcea.Close wdDoNotSaveChanges
sourceb.Close wdDoNotSaveChanges
To get the page numbering that you want, I would use an Odd Page Header that
contains the following field construction
{ = { PAGE } / 2 }
You must use Ctrl+F9 to insert each pair of field delimiters { } and Alt+F9
to toggle off their display.

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
> How can I take two Word docs and merge them together so doc 1 is on the
> left-hand (even numbered) pages and doc 2 is on the right-hand (odd
[quoted text clipped - 23 lines]
> Thanks for any assistance.
> Denise
gambledcat - 26 Dec 2006 12:58 GMT
Doug - wonderful, thanks for the quick reply. I haven't worked with code in
in Word (or windows for that matter) - I will hunt around for how to apply
this. If you have a quick reference that would be great.
> I created this for someone else who want to do something similar.
[snip]>
> > How can I take two Word docs and merge them together so doc 1 is on the
> > left-hand (even numbered) pages and doc 2 is on the right-hand (odd
> > numbered)
> > pages? AND, if I can do this, is there a way to a) have doc 2 maintain its
> > unique page numbers? (hey, its christmas...miracle time, right?)
[snip]
Graham Mayor - 26 Dec 2006 13:20 GMT
http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Doug - wonderful, thanks for the quick reply. I haven't worked with
> code in in Word (or windows for that matter) - I will hunt around for
[quoted text clipped - 18 lines]
>>> time, right?)
> [snip]
gambledcat - 26 Dec 2006 13:41 GMT
yay! thank you so much......a thousand blessings...
> http://www.gmayor.com/installing_macro.htm
>
[quoted text clipped - 20 lines]
> >>> time, right?)
> > [snip]