Merging multiple word documents.

Caporegime
Joined
12 Mar 2004
Posts
29,958
Location
England
I have a bunch of word 2007 documents that I've created over time for a project I'm working on, how do I merge all these documents into one long text document, is there some kind of import function?
 
Use an old command line trick, assuming there is no encryption in the documents and they are all the same Word version.

Create a new blank file called master.doc in the same folder as your documents, then run the command line:

Code:
copy /b master.doc+doc1.doc+doc2.doc+doc3.doc....

The /b switch indicates a binary file.
 
Last edited:
You could try inserting the documents into a single document. The instructions are for 2003, but it's basically the same for other versions.

You can select multiple objects (Word docs) at once when you insert.
 
Back
Top Bottom