Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Making Sure Styles Do Not Update Automatically.

Making Sure Styles Do Not Update Automatically

Written by Allen Wyatt (last updated February 24, 2024)
This tip applies to Word 97, 2000, 2002, and 2003


Nancy does a lot of work on templates. She doesn't want the template to "Automatically Update Document Styles." When she unchecks that check box in her templates (including the Normal template) it appears unchecked, but won't stay unchecked—the next time she opens the document or the template, it is checked again. Nancy wants users to create a document based on the template, but be able to modify styles without having that "Automatically Update Document Styles" check box enabled.

There are probably a couple of issues at work here. First, it doesn't really matter what you do with your Normal template in this regard. What matters is what the users you are concerned about are doing with their Normal template. If their Normal template has "Automatically Update Document Styles" selected for various styles, then it may very well affect any subsequent styles they create—even if they've loaded your template that doesn't have it selected.

The reason this works this way is because the Normal template is always loaded. Even if you load other templates, it is still loaded. Combine that with the fact that the "Automatically Update Document Styles" setting is persistent, and you run into the situation where it stays on because it was turned on by the Normal template and remained on even with the subsequent loading of a different template.

If you know that the Normal template on your users' systems has the setting turned off, then it is also possible that there is some third-party add-in that is stopping the setting from being saved as you expect, or it is (perhaps) actively turning the setting on. Tracking down this type of problem can be a bit exasperating, since you need to disable all your add-ins and add them back one at a time, checking after each addition to see if the problem crops up again.

Once you've figured out that it isn't related to an add-in, there are two potential solutions you can pursue. First, you may need to create a new Normal template for each of your users—one that doesn't have the setting selected. Replacing the Normal template for a bunch of users can be tricky, however, unless you have some level of control over those users. (For instance, you might be able to swing this if you are responsible for templates within your company.)

A better solution might be to include a macro in your non-Normal templates that turns off the setting. Consider the following simple macro:

Sub RemoveAutoUpdate()
    Dim s As Style
    For Each s In ActiveDocument.Styles
        If s.Type = wdStyleTypeParagraph Then
            s.AutomaticallyUpdate = False
        End If
    Next s
End Sub

The macro steps through each style in the document and turns off the "Automatically Update Document Styles" setting for paragraph styles. You could easily set up the macro so that it ran each time the template was opened or each time a new document was created from the template.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11158) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Making Sure Styles Do Not Update Automatically.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Determining How Many Windows are Open

Does your macro need to know how many windows Excel has open? You can determine it by using the Count property of the ...

Discover More

Searching for Special Hyphens

Word allows you to use a couple of different types of hyphens in your document, each with a different purpose. If you ...

Discover More

Moving Through a Table in a Macro

Do you need to step through a table, cell by cell, in a macro? It's easy to do using the Move method, as described in ...

Discover More

Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!

More WordTips (menu)

Developing Style Families

Styles, as implemented in Word, represent a powerful way to help you easily standardize your formatting tasks. When ...

Discover More

Losing All Formatting in a Document

Have you ever made a formatting change to a couple of characters or to a paragraph, only to see those changes affect text ...

Discover More

Finding Unused Styles

Use this VBA macro to determine which styles are being used in the current Word document.

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is two minus 0?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.