Written by Allen Wyatt (last updated February 27, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
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 2021.
Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!
Word allows you to add comments to your document to aid in the development of the document. At some point you may want to ...
Discover MoreGot 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 MoreNeed to get rid of all the comments in your document that are added to your text? You can do so by using the regular Find ...
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 © 2025 Sharon Parq Associates, Inc.
Comments