Written by Allen Wyatt (last updated January 5, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
Mia often edits documents containing run-on sentences. Invariably these are two sentences that are currently joined by a comma. Mia wants to replace the comma with a period and then capitalize the first letter of the next word. Doing this manually gets repetitive and time-consuming, so she would like to create a macro and a keyboard shortcut to handle the process.
You could actually record a macro to handle this type of edit. Put your insertion point to the left of the comma and start the macro recorder. You can then perform these steps:
You can now stop the macro recorder. The macro could be assigned to a shortcut key or added to the Quick Access Toolbar. If you examine the macro, you will find that it looks similar to the following:
Sub FixRunOn() Selection.MoveRight Unit:=wdCharacter, _ Count:=1, Extend:=wdExtend Selection.TypeText Text:="." Selection.MoveRight Unit:=wdCharacter, _ Count:=1 Selection.MoveRight Unit:=wdCharacter, _ Count:=1, Extend:=wdExtend Selection.Range.Case = wdUpperCase End Sub
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 (10558) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Dealing with Run-On Sentences.
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!
Macros allow you to easily extend what you can do with Word. If you have a common editing task, that task can often be ...
Discover MoreWhen you type information into a document, what you type normally is inserted just the left of the insertion point. Word ...
Discover MoreBy default, dashes don't "stick" to the text that follows them. Here's one way around this normal formatting convention.
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-02-25 14:19:41
Malcolm Patterson
Step 6 can also be performed by pressing SHIFT+F3, which toggles the case of selected text from lowercase to initial cap to all caps and back to lowercase. If text is not selected but the cursor is within a word, then that word's case changes. (I generally prefer a key combination to a mouse click.)
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.
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 © 2025 Sharon Parq Associates, Inc.
Comments