Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
philr philr is offline
external usenet poster
 
Posts: 8
Default Combining doc files into single file

I have a number of dictations each in separate doc files that need to be
concatenated into a single file for later upload into a database. Is there an
easier way of putting the together the contents of these separate word.doc
files instead of opening each file, select all, copy, switch to new file and
paste, repeat for the next file?

Thanks,
philr
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Combining doc files into single file

This sounds like a job for the boiler.dot add-in which you can download from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
philr philr is offline
external usenet poster
 
Posts: 8
Default Combining doc files into single file

Thank you Mr. Mayor,

Your suggestion to look at the download site was good. It lead me to other
resources like WOPR and gave me a couple other key words. Turns out MS had
already solved the problem for me. I apparently can use Insert | Files ...
and include tons of files.

I very much appreciated your suggestion.

Much appreciated,
philr

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can download from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Combining doc files into single file

The boiler macro simply makes the job simpler and allows you to select the
files in a preferred order. If you want to insert the document contents of a
folder into a single document, then the following macro will do that
http://www.gmayor.com/installing_macro.htm :

Sub BatchInsertFiles()
On Error GoTo err_FolderContents
Dim FirstLoop As Boolean
Dim DocList As String
Dim DocDir As String

With Dialogs(wdDialogCopyFile)
If .Display 0 Then
DocDir = .Directory
Else
MsgBox "Cancelled by User"
Exit Sub
End If
End With
If Documents.Count 0 Then
Documents.Close SaveChanges:=wdPromptToSaveChanges
End If
Application.ScreenUpdating = False
FirstLoop = True
If Left(DocDir, 1) = Chr(34) Then
DocDir = Mid(DocDir, 2, Len(DocDir) - 2)
End If
DocList = Dir$(DocDir & "*.doc")
Documents.Add
Do While DocList ""
Selection.InsertFile FileName:=DocList
DocList = Dir$()
FirstLoop = False
Loop
Application.ScreenUpdating = True
Exit Sub
err_FolderContents:
MsgBox Err.Description
Exit Sub
End Sub



philr wrote:
Thank you Mr. Mayor,

Your suggestion to look at the download site was good. It lead me to
other resources like WOPR and gave me a couple other key words.
Turns out MS had already solved the problem for me. I apparently can
use Insert | Files ... and include tons of files.

I very much appreciated your suggestion.

Much appreciated,
philr

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can
download from my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need
to be concatenated into a single file for later upload into a
database. Is there an easier way of putting the together the
contents of these separate word.doc files instead of opening each
file, select all, copy, switch to new file and paste, repeat for
the next file?

Thanks,
philr



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Steve Steve is offline
external usenet poster
 
Posts: 298
Default Combining doc files into single file

Graham, where is that (boiler) add-in on your site? I have looked and tried
search, but to no avail. I'm trying to combine two Word 2007 docs that each
have completely different formatting (one was a conversion from a PDF).

Please advise. Thank you. Steve

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can download from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Steve Steve is offline
external usenet poster
 
Posts: 298
Default Combining doc files into single file

Graham, where is that (boiler) add-in on your site? I have looked and tried
search, but to no avail. I'm trying to combine two Word 2007 docs that each
have completely different formatting (one was a conversion from a PDF).

Please advise. Thank you. Steve

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can download from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr




  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Combining doc files into single file

http://www.gmayor.com/Boiler.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Steve" wrote in message
...
Graham, where is that (boiler) add-in on your site? I have looked and
tried
search, but to no avail. I'm trying to combine two Word 2007 docs that
each
have completely different formatting (one was a conversion from a PDF).

Please advise. Thank you. Steve

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can download
from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr






  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Combining doc files into single file

http://www.gmayor.com/Boiler.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Steve" wrote in message
...
Graham, where is that (boiler) add-in on your site? I have looked and
tried
search, but to no avail. I'm trying to combine two Word 2007 docs that
each
have completely different formatting (one was a conversion from a PDF).

Please advise. Thank you. Steve

"Graham Mayor" wrote:

This sounds like a job for the boiler.dot add-in which you can download
from
my web site..

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


philr wrote:
I have a number of dictations each in separate doc files that need to
be concatenated into a single file for later upload into a database.
Is there an easier way of putting the together the contents of these
separate word.doc files instead of opening each file, select all,
copy, switch to new file and paste, repeat for the next file?

Thanks,
philr






Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
combining multiple Word files into a single Word document gigster99 Microsoft Word Help 3 April 25th 07 04:03 PM
Combining multiple files WGS Brown Microsoft Word Help 3 December 22nd 06 04:09 AM
Combining Word97 files User Tables 4 May 14th 06 04:23 PM
Combining multiple data lines for same company to single MS Word d vmk Mailmerge 1 July 8th 05 04:45 AM
Working on multiple word files from a single file???? Rich New Users 5 May 30th 05 03:10 PM


All times are GMT +1. The time now is 04:14 AM.

Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"