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: Intelligent Title Case.
Written by Allen Wyatt (last updated April 25, 2026)
This tip applies to Word 97, 2000, 2002, and 2003
Word contains a couple of different ways that you can adjust the case of selected text. One way is to click Format | Change Case to display the Change Case dialog box. Word lists different ways in which it can adjust the case of your text. One of the most common case changes is title case. This type of change results in each word of the selected text being uppercase, while the rest of the letters are in lowercase. The only problem with this is that Word is rather indiscriminate in what it capitalizes. For instance, if you select the text "this is a test" and then use the Change Case dialog box to change the text to title case, you end up with "This Is A Test." Common rules of capitalization, however, would dictate that the "short" words ("is" and "a") should not be capitalized.
This is where a macro comes in handy. You can create a macro to intelligently apply title case to a text selection. The macro can be programmed so that it ignores a specific set of words while doing its work. Consider the following macro:
Sub TitleCase()
Dim lclist As String
Dim wrd As Integer
Dim sTest As String
' list of lowercase words, surrounded by spaces
lclist = " of the by to this is from a "
Selection.Range.Case = wdTitleWord
For wrd = 2 To Selection.Range.Words.Count
sTest = Trim(Selection.Range.Words(wrd))
sTest = " " & LCase(sTest) & " "
If InStr(lclist, sTest) Then
Selection.Range.Words(wrd).Case = wdLowerCase
End If
Next wrd
End Sub
When you select some text and run this macro, the first thing it does is to change the text to Word's standard title case. It then steps through the words in the selection (Word makes the words available in the Words collection), examining each one. Each word is extracted and placed in the sTest variable, which then is converted to lowercase. The content of sTest is then checked against the lclist string to see if there is a match. If there is, then the word in the original text is converted to lowercase.
The key to the macro is the lclist string. This string contains a list of words that you want to always appear in lowercase. These words are surrounded by spaces—including the first and last words of the string. When the sTest comparison is done, sTest contains a leading and trailing space so that successful matches can be made. (The spaces are included so that there are no mistakes in word matching, for instance matching "he" to a part of "the".)
Note, as well, that the comparison portion of the macro doesn't pay attention to the first word in the text selection. This word is assumed to be the first word of a phrase or sentence, which should always start with an uppercase character.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (215) 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: Intelligent Title Case.
Do More in Less Time! An easy-to-understand guide to the more advanced features available in the Microsoft 365 version of Word. Enhance the quality of your documents and boost productivity in any field with this in-depth resource. Complete your Word-related tasks more efficiently as you unlock lesser-known tools and learn to quickly access the features you need. Check out Microsoft 365 Word For Professionals For Dummies today!
If you have text surrounded by quotes in a document, you may want to remove the quote marks and make the text that was ...
Discover MoreNeed to easily change the color of some selected text? A quick way to do it is with a custom macro that sets just the hue ...
Discover MorePart of the formatting you can add to your text is underlining. That simple word (underlining) represents quite a few ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-04-26 00:03:56
Steve Wells
Some entries in the macro's lowercase words list depend on the Manual of Style / Style Guide used. For short words in lowercase, the verb "is" qualifies. Maybe "this".
Not for the Chicago Manual of Style, which I tend to follow. Verbs, even short ones "Is" and "Are" get capitalized. "This" (and "That") get capitalized because they are not prepositions.
First and last words always caps with very rare exceptions that I won't detail here.
The Chicago Manual of Style made some title case changes from its 17th to 18th edition.
Prepositions of less than 5 letters are lowercase except *paired* with a longer preposition.
For example "Citizens for the Bill" but "Citizens For and Against the Bill"
Years ago, I expanded heavily on Allen's word list. Mine looks like this (I don't know how initial blank spaces process here):
' List of lowercase words, surrounded by spaces (concatenated and continued)
LowCaseList = " a an the and but or nor so yet as " & _
"at by in of on to up for off out per pro qua via " & _
"amid atop down from into like near next onto " & _
"over past plus sans save than till unto upon with " & _
"da de la le van von dans "
The list starts with the standard articles and conjunctions. Then a line of 2 and 3-letter ones, then two rows of 4-letter ones, and finally a row of foreign ones so we might write "Le Voyage dans la Lune", though the original 1902 title was in sentence case.
Note that some of mine depend on their part-of-speech usage, so if you copy them, be careful.
"I Like Them like That" has "Like" as a verb and "like" as a preposition.
"How We Save the Library save Three Books in the Back" has "Save" as a verb and "save" as a preposition meaning "except".
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments