Hi Tim,
Ah, that's something different.
Create a new blank document and save it as Target in the default documents
folder as specified under Tools>Options>File Locations. Then close that new
document.
Now, open the document whose pages you want to re-arrange, put the cursor
somewhere on what you want to become the first page of the new document and
then run a macro containing the following code:
Dim Target As Document, Source As Document
Set Source = ActiveDocument
Set Target = Documents.Open(Options.DefaultFilePath(wdDocumentsPath) &
"\target.doc")
Target.Range.InsertAfter Source.Bookmarks("\page").Range
Target.Save
Target.Close
Then move to the page that you want to appear as Page 2 and run the macro
again.
Continue this process for each page.
When you have finished, the document named Target should contain the
original document with the pages re-arranged in the order that you want.
The page setup of the two documents (paper size, margins) will need to be
the same.
Please respond to the newsgroups for the benefit of others who may be
interested.
Hope this helps
Doug Robbins - Word MVP