bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Formatting > Styles > Preventing Styles from Changing

Preventing Styles from Changing

Summary: It is frustrating to spend a lot of time working on a document, getting your styles just right, and then have those styles change without notice after someone else works with the document. Unplanned changes in styles, when two or more people are working on the document, can be due to a number of different conditions. This tip explains what you need to check (and change) to make the best of the bad situation. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)

Don has run into a problem in his office regarding styles. It seems that when there are multiple authors using a single document, the styles sometimes change unexpectedly. If Don saves a file with certain styles in place and someone else with access to the server opens and saves the same file, then when Don subsequently opens the file, invariably the style definitions have changed.

There are a couple of things to check when this happens. First of all, you need to check to make sure that all users have dynamic style updating turned off. This feature of Word causes changes to a style definition when someone applies an explicit formatting change to something in the document. Thus, with the feature turned on, if someone makes a change to an individual paragraph, the change is also applied to the underlying style, which in turn affects every other paragraph in the document that uses that style. To turn this feature off, all of the users will need to perform these steps if you are using Word 97 or Word 2000:

  1. Select Style from the Format menu. Word displays the Style dialog box.
  2. In the list of styles, select a style name.
  3. Click on Modify. The Modify Style dialog box is displayed.
  4. Make sure the Automatically Update check box, at the bottom of the dialog box, is clear.
  5. Click on OK to close the Modify Style dialog box.
  6. Click on Close to dismiss the Style dialog box.

If you are using Word 2002 or Word 2003, the steps are different:

  1. Choose Styles and Formatting from the Format menu. Word displays the Styles and Formatting task pane, at the right side of the screen.
  2. Hover the mouse pointer over a style name in the task pane. You should see a down-arrow appear at the right side of the style name.
  3. Click the down arrow and select Modify. Word displays the Modify Style dialog box. (Click here to see a related figure.)
  4. Make sure the Automatically Update check box, at the bottom of the dialog box, is clear.
  5. Click OK.

If you are using Word 2007, the steps are (again) slightly different. Follow these steps:

  1. Make sure the Home tab of the ribbon is selected.
  2. At the bottom-right side of the Styles area, click the small icon that looks like an arrow pointing down and to the right. (You could, instead, press Alt+Ctrl+Shift+S.) Word displays the Styles window.
  3. Hover the mouse pointer over a style name in the Styles window. You should see a down-arrow appear at the right side of the style name.
  4. Click the down arrow and select Modify. Word displays the Modify Style dialog box.
  5. Make sure the Automatically Update check box, at the bottom of the dialog box, is clear. (If there is no Automatically Update check box, then Word 2007 doesn't offer that option for the style you have chosen.)
  6. Click OK.

Notice that these steps affect only a single style in a document. That's right--Word allows dynamic style updating to be set on a style-by-style basis. This means that you will need to go through each and every style in your document and follow these same steps. That can obviously get rather tedious if you have a lot of styles in the document. In that case, you may want to use a macro to go through all the styles and change the setting. The following macro will do this rather nicely:

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 problem could also be related to the template attached to your document. If, for instance, the document uses Normal.dot and each user's Normal.dot template is different, then this can affect the appearance of the document. The way around this problem is to make sure that the document uses a template other than Normal.dot (preferably one stored on the server and accessible by all users) or that everyone's Normal.dot template is the same.

You might also check to make sure that all of the users have the same fonts installed on their systems. If a document uses a font that is on your system, and then that document is opened on a system that doesn't have the same font, Word will substitute a different font for the missing one. This can affect the appearance of the document, even when you subsequently open it back on your original system. To stave off this issue, make sure that you have Word configured so it will embed TrueType fonts with the document:

  1. Choose Options from the Tools menu. Word displays the Options dialog box.
  2. Make sure the Save tab is selected. (Click here to see a related figure.)
  3. Ensure the Embed TrueType Fonts check box is selected.
  4. If you will be using a small number of characters in a particular font, choose the Embed Characters In Use Only check box.
  5. To save space in the document, choose the Do Not Embed Common System Fonts check box.
  6. Click on OK.

If you are using Word 2007, the steps are slightly different. Follow these, instead:

  1. Click the Office button and then click Word Options. Word displays the Word Options dialog box.
  2. Click on Save at the left side of the dialog box. (Click here to see a related figure.)
  3. Near the bottom of the dialog box, make sure the Embed Fonts in the File option is selected.
  4. If you will be using a small number of characters in a particular font, choose the Embed Only the Characters Used in the Document check box.
  5. To save space in the document, choose the Do Not Embed Common System Fonts check box.
  6. Click on OK.

Tip #423 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003 | 2007


Create and Merge! Discover how to use Word's mail merge tool to create your own custom documents. WordTips: Mail Merge Magic includes all the information you need to make your merges more productive.

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)