Changing the Language for All Styles

Written by Allen Wyatt (last updated March 9, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021


Mary Anne works as an academic editor, and she lives and works in Canada. She finds that most clients, no matter where they live on the continent, submit their documents to her in US English. If she selects all and changes the proofing language, the text changes to Canadian English but the styles do not. Mary Anne wonders if there is a way to change all the styles in a document to Canadian English, or if she must change each style individually.

There are a few things you can try to get the styles changed. First, you may want to open the document and make the language change in the Normal style. If all the other styles in the document are based on the Normal style—as is often the case, particularly if the author didn't pay much attention to styles—then all the styles lower in the hierarchy should change, as well.

Another approach is to create your own template, using the language of your choice, and then attach that template to any incoming documents. You could also, if you prefer, use the Organizer to copy styles from your template (or a previous document you know is "good") to the document on which you are now working.

Finally, you may want to use a macro to effect the language changes. There's a nice example of such a macro at this page:

https://cybertext.wordpress.com/2018/09/21/word-macro-to-set-the-language-for-all-styles/

I'll copy the heart of that macro, with a few modest changes, here just in case the original goes away for some reason. (That happens on the Internet, as we are all aware.)

Sub ChangeStyleLanguage()
    Dim s As Style

    With ActiveDocument
        For Each s In .Styles
            On Error Resume Next
            s.LanguageID = wdEnglishCanadian
            On Error GoTo 0
        Next s
    End With
End Sub

The heart of the macro is the line that sets the .LanguageID property. In the adapted example here, the language is being set to Canadian English. You can find a detailed list of various language IDs at the following Microsoft page:

https://learn.microsoft.com/en-us/office/vba/api/word.wdlanguageid

If you try the macro and it doesn't work, typically that is because you may not have language support for the desired language on your system. In their documentation for the .LanguageID property, Microsoft states that "some of the wdLanguageID constants may not be available to you, depending on the language support that you've selected or installed." In Mary Anne's case, however, it is doubtful that this will be a problem.

Once you have the macro just the way you want, add it to your Quick Access Toolbar and you are all set to go.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (11892) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021.

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

Turning Off Track Changes Change Bars

Word includes a feature that allows you to track changes made to a document. One of the ways in which Word marks your ...

Discover More

Shortcut Key for Format Painter

The Format Painter is great for copying formatting from one cell to another. If you don't want to grab the mouse to use ...

Discover More

Inserting a Document's Size

Want to insert the size of your document directly into the document body? You can do so by using one of the dynamic ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (ribbon)

Making Sure Styles Do Not Update Automatically

One of the features of Word that can cause some problems is one that allows styles to be automatically updated based upon ...

Discover More

Deleting Styles

As documents evolve, so do your needs for various styles. You may create new ones and, invariably, old ones need to be ...

Discover More

Replacing the Style of a Paragraph that Follows a Heading

Do you need to change the style assigned to a paragraph depending on the style of the previous paragraph? This is the ...

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 four less than 7?

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 ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu 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.