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, 2021, and Word in Microsoft 365


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, 2021, and Word in Microsoft 365.

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

Creating a JPG File from a Chart

Excel provides some great tools that allow you to create amazing charts based on data in your worksheets. Once your ...

Discover More

Setting Orientation of Cell Values

Need the contents of a cell to be shown in a direction different than normal? Excel makes it easy to have your content ...

Discover More

Increasing Space between Cell Borders and Cell Contents

Tables can be great for organizing and presenting information in a document. If you find there is not enough white space ...

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 (ribbon)

Preserving Style Formatting when Combining Documents

Insert one document into another and you may not get the results you expect. Here's why, along with what you can do about it.

Discover More

Can't Find or Delete a Style

Using the shortcuts available in the Styles pane to select text can be very helpful. It may, however, be quite ...

Discover More

Inserting a Cross-Reference to the First Style on a Page

A common way to set up a header is to have it refer to the first occurrence of a heading on the page. (Think how 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 seven more than 4?

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.