Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
NicoVM007 NicoVM007 is offline
external usenet poster
 
Posts: 5
Default change template for existing Word documents

I would like to learn how to easily update the template of existing documents.
Does a document change when the template on which it has been created
changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default change template for existing Word documents

Hi Nico,

Documents based on a template do not automatically change when the template
is modified. You need to perform an extra step to update each document.

This is explained at
http://www.shaunakelly.com/word/atta...ate/index.html and there is
additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
NicoVM007 NicoVM007 is offline
external usenet poster
 
Posts: 5
Default change template for existing Word documents

Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it.
Conclusion however is that I need to look for another way (not via changing
the template) to change the look and feel (headers/footers etc) of multiple
docs at one time.
Any ideas how that can be done ?
thanks!


"Jay Freedman" wrote:

Hi Nico,

Documents based on a template do not automatically change when the template
is modified. You need to perform an extra step to update each document.

This is explained at
http://www.shaunakelly.com/word/atta...ate/index.html and there is
additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default change template for existing Word documents

You'll need a macro that opens each document and updates it. You can have
the macro modify the style definitions (and anything else) directly, or you
can modify the template's styles and have the macro do the VBA equivalent of
checking and unchecking the "Automatically Update Document Styles" box in
the Templates & Add-Ins dialog.

The success of this approach will depend on the documents having been
properly formatted with identically named styles throughout.

A macro that opens every document in a given folder for the purpose of
running a Find & Replace is shown at
http://www.gmayor.com/batch_replace.htm. That code could be changed to do
style changes instead. If you need help with that, please ask in the Word
VBA newsgroup,
http://www.microsoft.com/office/comm...rd.vba.general.

NicoVM007 wrote:
Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it.
Conclusion however is that I need to look for another way (not via
changing the template) to change the look and feel (headers/footers
etc) of multiple docs at one time.
Any ideas how that can be done ?
thanks!


"Jay Freedman" wrote:

Hi Nico,

Documents based on a template do not automatically change when the
template is modified. You need to perform an extra step to update
each document.

This is explained at
http://www.shaunakelly.com/word/atta...ate/index.html and there
is additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
NicoVM007 NicoVM007 is offline
external usenet poster
 
Posts: 5
Default change template for existing Word documents

Great update, thanks !

One more question: what is the effect of checking the "automatically update
document styles" checkbox?
Does it update my document when the initially used template for that
document is changed ?
I have been playing with it, but see no real changes, so I have my questions
about me doing it correct, and the use of the checkbox :-)


"Jay Freedman" wrote:

You'll need a macro that opens each document and updates it. You can have
the macro modify the style definitions (and anything else) directly, or you
can modify the template's styles and have the macro do the VBA equivalent of
checking and unchecking the "Automatically Update Document Styles" box in
the Templates & Add-Ins dialog.

The success of this approach will depend on the documents having been
properly formatted with identically named styles throughout.

A macro that opens every document in a given folder for the purpose of
running a Find & Replace is shown at
http://www.gmayor.com/batch_replace.htm. That code could be changed to do
style changes instead. If you need help with that, please ask in the Word
VBA newsgroup,
http://www.microsoft.com/office/comm...rd.vba.general.

NicoVM007 wrote:
Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it.
Conclusion however is that I need to look for another way (not via
changing the template) to change the look and feel (headers/footers
etc) of multiple docs at one time.
Any ideas how that can be done ?
thanks!


"Jay Freedman" wrote:

Hi Nico,

Documents based on a template do not automatically change when the
template is modified. You need to perform an extra step to update
each document.

This is explained at
http://www.shaunakelly.com/word/atta...ate/index.html and there
is additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Peter T. Daniels Peter T. Daniels is offline
external usenet poster
 
Posts: 3,215
Default change template for existing Word documents

It doesn't look backward to a changed template; rather, if you
manually change formatting in (say) a paragraph in Normal style, it
makes the same change in all paragraphs bearing that same style. And
since styles are often based on other styles, the change can ripple
throughout your document.

On Sep 24, 4:13*am, NicoVM007
wrote:
Great update, thanks !

One more question: what is the effect of checking the "automatically update
document styles" checkbox?
Does it update my document when the initially used template for that
document is changed ?
I have been playing with it, but see no real changes, so I have my questions
about me doing it correct, and the use of the checkbox :-)



"Jay Freedman" wrote:
You'll need a macro that opens each document and updates it. You can have
the macro modify the style definitions (and anything else) directly, or you
can modify the template's styles and have the macro do the VBA equivalent of
checking and unchecking the "Automatically Update Document Styles" box in
the Templates & Add-Ins dialog.


The success of this approach will depend on the documents having been
properly formatted with identically named styles throughout.


A macro that opens every document in a given folder for the purpose of
running a Find & Replace is shown at
http://www.gmayor.com/batch_replace.htm. That code could be changed to do
style changes instead. If you need help with that, please ask in the Word
VBA newsgroup,
http://www.microsoft.com/office/comm....mspx?dg=micro.....


NicoVM007 wrote:
Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it.
Conclusion however is that I need to look for another way (not via
changing the template) to change the look and feel (headers/footers
etc) of multiple docs at one time.
Any ideas how that can be done ?
thanks!


"Jay Freedman" wrote:


Hi Nico,


Documents based on a template do not automatically change when the
template is modified. You need to perform an extra step to update
each document.


This is explained at
http://www.shaunakelly.com/word/atta.../index.htmland there
is additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.


--
Regards,
Jay Freedman
Microsoft Word MVP * * * *FAQ:http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.


NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!-

  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default change template for existing Word documents

To answer these questions, I'll point you to
http://word.mvps.org/FAQs/MacrosVBA/UpdateStyles.htm, which is also
linked from Shauna Kelly's "Attach Template" article that I cited
before. There's a lot more there than I want to type. Pay special
attention to the cautions about what not to do.

On Thu, 24 Sep 2009 01:13:02 -0700, NicoVM007
wrote:

Great update, thanks !

One more question: what is the effect of checking the "automatically update
document styles" checkbox?
Does it update my document when the initially used template for that
document is changed ?
I have been playing with it, but see no real changes, so I have my questions
about me doing it correct, and the use of the checkbox :-)


"Jay Freedman" wrote:

You'll need a macro that opens each document and updates it. You can have
the macro modify the style definitions (and anything else) directly, or you
can modify the template's styles and have the macro do the VBA equivalent of
checking and unchecking the "Automatically Update Document Styles" box in
the Templates & Add-Ins dialog.

The success of this approach will depend on the documents having been
properly formatted with identically named styles throughout.

A macro that opens every document in a given folder for the purpose of
running a Find & Replace is shown at
http://www.gmayor.com/batch_replace.htm. That code could be changed to do
style changes instead. If you need help with that, please ask in the Word
VBA newsgroup,
http://www.microsoft.com/office/comm...rd.vba.general.

NicoVM007 wrote:
Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it.
Conclusion however is that I need to look for another way (not via
changing the template) to change the look and feel (headers/footers
etc) of multiple docs at one time.
Any ideas how that can be done ?
thanks!


"Jay Freedman" wrote:

Hi Nico,

Documents based on a template do not automatically change when the
template is modified. You need to perform an extra step to update
each document.

This is explained at
http://www.shaunakelly.com/word/atta...ate/index.html and there
is additional background information at
http://www.shaunakelly.com/word/temp...ons/index.html.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

NicoVM007 wrote:
I would like to learn how to easily update the template of existing
documents. Does a document change when the template on which it has
been created changes as well? If not, how can set up such a policy?
I want to update a series of docs in one time by changing the nested
template, and not change the docs one by one...
Thanks!




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
Best way to put existing documents into new template (Word 2007)? Kathy Microsoft Word Help 3 May 29th 09 03:06 PM
Style names in Word 03 template change when attached to existing d Caroline O. Microsoft Word Help 3 January 2nd 07 05:46 PM
New Printer...can you change the settings for existing documents? Penny Miller Page Layout 2 August 23rd 05 03:20 PM
apply a template to existing documents Bubba Gump Shrimp Page Layout 2 July 28th 05 04:46 PM
Applying Styles from one template to existing documents Cory Levine Microsoft Word Help 1 April 12th 05 05:41 PM


All times are GMT +1. The time now is 08:02 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"