Updating fields automatically?

G

Guest

Hi everybody,
I have a group of 20 documents that are all merged into one with INCLUDETEXT
fields. The big document is merged into another document with an INCLUDETEXT
field of its own. Does anyone know if there's any way to set the fields so
once I update one of the 20 original documents, the change will appear in the
other two big documents so I don't have to go through them every time and
manually update? I'm using Word 2003.

Thanks!
Jezzica85
 
G

Graham Mayor

IncludeText fields will not update automatically.
You can either insert the documents as linked files and set the update links
on open option
or
You can run an update macro on opening the document. You can see suitable
update macro code and the use of autoopen macros at
http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
M

macropod

Hi Jezzica,

You could do this with a macro in each of the target documents, coded as:
Sub AutoOpen()
ActiveDocument.Fields.Update
End Sub

Another way of approaching this is to make the edits direct in one of the target documents, then press Ctrl-Shift-F7 to apply the
changes to the source document - you'll then have only one target document to update.

Cheers
 
G

Guest

Thank you macropod, this works great! And thank you Graham for pointing me to
that macro tutorial.
Jezzica85

macropod said:
Hi Jezzica,

You could do this with a macro in each of the target documents, coded as:
Sub AutoOpen()
ActiveDocument.Fields.Update
End Sub

Another way of approaching this is to make the edits direct in one of the target documents, then press Ctrl-Shift-F7 to apply the
changes to the source document - you'll then have only one target document to update.

Cheers

--
macropod
[MVP - Microsoft Word]
-------------------------

jezzica85 said:
Hi everybody,
I have a group of 20 documents that are all merged into one with INCLUDETEXT
fields. The big document is merged into another document with an INCLUDETEXT
field of its own. Does anyone know if there's any way to set the fields so
once I update one of the 20 original documents, the change will appear in the
other two big documents so I don't have to go through them every time and
manually update? I'm using Word 2003.

Thanks!
Jezzica85
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top