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

Using Optional Hyphens

Adding hyphens to your document can affect the way in which Word wraps text from one line to the next. Optional hyphens, ...

Discover More

Setting the Print Area

Many people, when they print a worksheet, print the entire thing. You don't have to, however. You can specify that Excel ...

Discover More

Forcing Word to Display Spelling and Grammar Errors

If your document has enough spelling errors in it, Word informs you that you have too many and then refuses to display ...

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)

Stepping Through Head Formats

You can use the shortcuts described in this tip to quickly change the heading levels of the headings in your document. ...

Discover More

Printing a List of Custom Styles

You can add any number of styles to your document in order to define how you want your text to appear. If you later want ...

Discover More

Using Alternating Styles

Alternating styles can come in handy when you have to switch between one type of paragraph and another, automatically, as ...

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 5 - 3?

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.