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: Make AutoCorrect Pay Attention to Character Case.

Make AutoCorrect Pay Attention to Character Case

Written by Allen Wyatt (last updated September 18, 2019)
This tip applies to Word 97, 2000, 2002, and 2003


2

AutoCorrect is a handy feature that helps compensate for "poor typing." (It has helped me tremendously when my fingers get mixed up on which keys should be pressed when. :>)) There are some instances when AutoCorrect can cause problems, however.

Consider the situation when you have acronyms that are the same as a commonly mistyped word. For instance, "hsa" is recognized by AutoCorrect as a mistyping, and it is automatically corrected to "has." However, HSA is also an acronym for Health Savings Account. If you really meant to type the acronym, you don't want Word to assume you made a typing error and correct it for you.

Unfortunately, there is no way to instruct AutoCorrect to ignore "mistyped" words that are typed in all uppercase. There are, however, two workarounds you can use.

The first workaround is to create a brand new AutoCorrect entry that handles just instances where you want HSA. Follow these steps:

  1. Choose AutoCorrect Options from the Tools menu. Word displays the AutoCorrect dialog box, and the AutoCorrect tab should be selected. (See Figure 1.)
  2. Figure 1. The AutoCorrect tab of the AutoCorrect dialog box.

  3. In the Replace box, enter "hsaa" (without the quote marks).
  4. In the With box, enter HSA, in uppercase.
  5. Click on Add. The new AutoCorrect entry is added to the list of entries.
  6. Click on OK.

At this point, every time you type "hsaa" it is replaced with HSA, and every time you type "hsa" it is replaced with "has." This works because the replacement only occurs when Word determines you've finished the word (pressing a space or punctuation mark), and once a replacement is made, Word doesn't go back and make additional replacements. Thus, HSA, as a replacement for "hsaa," is not automatically corrected to HAS.

The second workaround is to allow AutoCorrect to do its work, dutifully changing all instances of HSA to HAS. You can then create a macro that will use Find and Replace to locate all instances of the uppercase word HAS and change them to HSA. The following macro will do just that:

Sub ReplaceHAS()
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "HAS"
        .Replacement.Text = "HSA"
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = True
        .MatchWholeWord = True
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
End Sub

The macro works on the entire document. You could assign it to a shortcut key or a toolbar button so that you could use it as one of the finishing steps in your editing process.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (228) 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: Make AutoCorrect Pay Attention to Character Case.

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

Adjusting Table Row Height

When working with tables, you can adjust the height of individual rows. How you go about such adjustments depends on the ...

Discover More

Copying Pictures with a Macro

Copying information using a macro is rather simple, although there are multiple ways you can do the copying. The most ...

Discover More

Replacing Commas with Periods

Want to replace all commas in a formatted number with periods, and vice-versa? There are a couple of approaches you can ...

Discover More

Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!

More WordTips (menu)

Turning Off Capital Corrections

If you type two capital letters at the beginning of a word, Word assumes that you made a typing error and will attempt to ...

Discover More

Automatically Capitalizing Day Names

Type the name of any of the seven days into your document, and Word automatically makes sure it is capitalized. This is ...

Discover More

How Word Handles Abbreviations

Abbreviations appear all over the place in our society. If you want to understand how Word recognizes them (which it has ...

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 five more than 3?

2014-05-20 07:40:12

Alec Stone Sweet

At the Yale Law School, we have recently updating to Word 2013. I have since encountered a problem that I have never had before with any previous version of Word. Within a sentence already begun, if I capitalize a letter, or try to type in a basic capitalized abbreviation (e.g., for an institution like the ECHR), it is quite often the case that text that comes either before or after the capitalized letter is highlighted automatically and then replaced with whatever text is typed next. Sometimes it is whole sentences. Here's a specific example. I begin to type this sentence: "In the EC" ... as soon as I type the "C" the program highlights "In the" and writes over it. It happens on a regular basis whenever I need to capitalize a "C" or a "G" and many others. I have reproduced this effect hundreds of times, typing very slowly to ensure that I have not touched the control or any other key. Sometimes it highlights and replaces multiple sentences, but in weird irregular ways. It happens with shift+C, or G and others. I have to go back to where I was and do it again, sometimes several times before the EC sticks. I have spent hours trying to stop this from happening, changing the autocorrect and overwrite options to no avail - do I really have to enter every single acronym used for every governmental agency? At present, it is almost impossible for me to write. I'd be grateful for help.
Alec


2014-03-29 15:33:59

Steve Wells

I’m a major AutoCorrect power-user, and I could write a whole article on the subject. In fact I’m doing so in this comment. The macro approach, useful for other issues, is big-time overkill for this case. Typing a simple mnemonic for the desired uppercase word is far superior for everyday use. A person who needs to write HSA very frequently could save time and keep the typing down to "hs".

Reiterating my first statement: at current count, I have 393 little mnemonics that I type to save time, and another 3 for words that I tend to mistype or misspell. The keys to my methodology:

1. Have an excellent memory to remember most of the mnemonics. (Hereafter, I’ll call them mn’s.)

2. Keep a well formatted multi-column cheat sheet for the mn’s and replacements. (I print double sided, with one side sorted by mn’s and the other by replacements).

3. Good approaches to picking mn’s, particularly using non-word mn’s as much as possible, preferably short ones: im for immediately, av for average, avl for available.

4. Don’t use mn’s that that AutoCorrect already fixes or abbreviations that you use. Try typing the proposed mn in Word and see what happens before setting it in the dialog box. If it shows a red underline and doesn’t turn into something else, that’s a good sign.

5. Remember that mn’s can replace multiple words. My city/state/zip is sjh for San Jose, California 95121-2557. Why sjh and not sjc? A combination of easy to remember (sjh is San Jose home and sjw is for San Jose work) and avoiding collision with San Jose International Airport’s SJC code.

6. Realize that you write short words much more often than long words and can use that to save time. Create yr own tx-msg style so wn yo tp ts aa tt, te tc aa msw work fo yo. That was hard to create just showing my mn’s, because as I typed, my AutoCorrect settings were turning that into: “Create your own text-message style so when you type this and that, the technology and Microsoft Word work for you.

7. Many of my AutoCorrect entries require plurals. I simply repeat the last letter that I typed to make plurals. You don’t need to work hard to press a key again that you’re already pressing. I use og for organization and ogg for organizations. Simmilarly, I set dvm and dvmm as the singular and plural for development. Computer and computers? Those are cmp and cmpp. In my cheat sheet, I include only the singular form and set it in a different color so I can keep my list shorter.

8. Use the available template macros for copying your AutoCorrect settings to another computer or to back them up when necessary. They store nicely in a neat human-readable table.


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.