Ricky has a document that includes many comments. He wants to change one word that recurs in those comments. For example, in the phrase "bring to Joe's attention" he may want to change it to "bring to Mary's attention." Ricky wonders if there is a way to do this type of find and replace and affect only the comments.
Actually, this sort of task is quite easy to do in Word, and there are a couple of ways you can approach it. Here is one way to do it:
You can bypass the first step (the need to place the insertion point in the first comment) if you follow these alternative steps:
If you need to make these changes to a lot of documents—perhaps Joe has left the company and Mary is the new point person—then you may be interested in using a macro to make the changes. The following will do the trick for whatever document is active:
Sub MakeItMary() Dim c As Comment Dim sFind As String Dim sReplace As String sFind = "Joe" sReplace = "Mary" For Each c In ActiveDocument.Comments c.Range.Text = Replace(c.Range.Text, sFind, sReplace) Next 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 (6200) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Office 365.
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!
Comments can be a necessity when developing documents in conjunction with other people. They can be used to help document ...
Discover MoreNeed to change the appearance of the text in your comments? It's easy to do using techniques you are already familiar with.
Discover MoreWhen you insert a comment into a document, Word keeps track of who entered it and the date when it was entered. Here's ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments