Written by Allen Wyatt (last updated August 19, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
Michael has documents that he needs to edit daily. These documents are "free flowing," with no sentence endings or beginnings. (They start out as raw transcriptions.) It would be very helpful to Michael if he could select a character and have a macro automatically make that character uppercase and go back two spaces to type a period. That would allow him to edit the documents much quicker than he otherwise could.
This type of need is tailor-made for addressing with a macro. Here is an example of a simple macro that will do exactly what Michael wants:
Sub BreakSentence() Selection.Range.Case = wdUpperCase Selection.MoveLeft Unit:=wdCharacter, Count:=2 Selection.TypeText Text:="." End Sub
In order to use it, simply select the character that is at the start of what you view as the new sentence. (Truth be told, you could probably get away with simply putting the insertion point just before that character.) Run the macro, and it performs the two tasks—making the letter capitalized and inserting a period.
The biggest assumption in this macro is that there is only a single space between each word. If there are multiple spaces, then you will need to "clean up" your text after the macro is run.
You can make the macro even more useful by assigning it to a shortcut key. This allows you to make your character selection, press the shortcut key, and then continue with your editing. How you assign a macro to a shortcut key is described in this WordTip.
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 (13668) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Section marks are used regularly in the writings of some industries, such as in legal documents. If you need a way to ...
Discover MoreOne of the most helpful tools in Word is the ability to paste straight text into a document. This is used so much on my ...
Discover MoreWhen working in Draft or Normal view, you may want to view the area just to the left of the document's left margin. ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-11-30 16:40:17
Kiwerry
Apologies, the code below lost its indentation.
2023-11-30 16:38:54
Kiwerry
Thanks, Allen.
Some may prefer to select the word that starts a sentence by a double-click anywhere in it, rather than selecting the first character of that word, which can be more fiddly. They could use something like this :
Sub Capitalise_Word_add_Fullstop()
Selection.Range.Case = wdTitleWord
Selection.MoveLeft Unit:=wdWord, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Selection.TypeText Text:="."
End Sub
2019-09-03 10:01:28
Shelley List
Just one thing: unless you're using a monospace font like Courier New, you should have only one space after a period—not two!
2019-08-31 10:45:13
Gordon Bennett
I'm completely new at macros, but need them badly. At the moment, it would be great to get code for creating columns of sequential numbers. I need code to select the last number in the previous sequence, add one to it, then generate the next column. Each column has 40 numbers. I have purchased Excel Macros by Hein Smith, and began trying to learn from it for the past couple of days, but it isn't going well. I have an iMac, which I suspect may be part of the problem.
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 © 2024 Sharon Parq Associates, Inc.
Comments