Becca asked if there is a way to create a default setting so that the first letter following a colon will always be a capital letter. Unfortunately there is no built-in way to do this in Word. You can, however, create a macro that can be used to step through your document and make sure that each lowercase letter following a colon (and a space) is converted to uppercase.
Sub CapsAfterColon() Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = ": ([a-z])" .Replacement.Text = ": \1" .Forward = True .Wrap = wdFindContinue .Format = True .MatchCase = False .MatchWholeWord = False .MatchWildcards = True .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute While Selection.Find.Found Selection.Range.Case = wdUpperCase Selection.Collapse direction:=wdCollapseEnd Selection.Find.Execute Wend End Sub
The macro uses a wildcard search to find instances of a colon followed by a space and a lowercase letter. For each instance found, the text is converted to uppercase. The macro searches for and changes the case of all such instances in the document.
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 (3461) 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: Capitalizing the First Letter after a Colon.
The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!
Displaying non-printing characters can help you better understand the formatting and contents of your documents. What do ...
Discover MoreGot a document with text passages marked with the highlighter tool? You can collect all those highlighted selections and ...
Discover MoreWord makes it easy to establish links between documents. If you need to change the locations for a lot of links at once, ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-05-13 04:31:52
Emily
Both the original macro and Pam's modification have been REALLY helpful to me. Thanks!
2014-03-13 11:38:08
Pam
I believe I have figured it out! I changed it to this from what I had in the previous post:
.Text = ":" & vbTab & "([a-z])"
.Replacement.Text = ":" & vbTab & "1"
THIS seems to work!
Love your site, BTW. And I did find your "ribbon version" site as well. I think I need to take a VBA course. I can see the possibilities with this are almost endless.
2014-03-13 11:08:06
Pam
Great macro! I need this for a colon plus tab plus capitalize. I tried just replacing the space in your code with what appears to be the tab code (vbTab) but it didn't work.
.Text = ":vbTab([a-z])"
.Replacement.Text = ":vbTab1"
I am a complete novice at this, so this might not even work. But any ideas?
Thank you!
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.
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2019 Sharon Parq Associates, Inc.
Comments