Written by Allen Wyatt (last updated February 27, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
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 Microsoft 365.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Got a document with lots of comments in it? You can navigate from comment to comment with ease by using the Go To tab of ...
Discover MoreWord provides quite a bit of flexibility in what markup is displayed on-screen and how that markup appears. This tip ...
Discover MoreWord makes it easy to calculate the number of words in a document. If you want to count words only in your comments, then ...
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.
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