Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Pasting a Comment into Your Document.
Word includes a powerful tool that allows you to add comments to your document. Since comments are designed for reviewers' annotations while developing a document, it is handy to know how to paste the text of a comment into your main document. This is done using editing techniques you are already familiar with. Follow these steps:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (6036) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Pasting a Comment into Your Document.
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!
The comment feature of Word allows you to easily attach comments to words or phrases in your document. How those comments ...
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 MoreSelect some text in a document, and Word automatically places an "add comment" icon in the right margin. If you want to ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-10-07 09:50:00
Andrew
Here the macro I use to convert comments in bulk.nnSub CommentsToInline()n Const CommentShading = wdGray25n Const CommentColor = wdBluen n Dim OriginalNum As Longn Dim TrackingState As Booleann Dim C As Commentn n With ActiveDocument.Contentn Application.UndoRecord.StartCustomRecord "CommentsToInline"n TrackingState = ActiveDocument.TrackRevisionsn ActiveDocument.TrackRevisions = Falsen OriginalNum = .Comments.Countn For Each C In .Commentsn With C.Scopen .Collapse wdCollapseEndn .Text = "{{" & C.Author & ": }}"n With .Fontn .Name = "Arial"n .Size = Round(0.8 * .Size)n .ColorIndex = CommentColorn .Bold = Truen .Italic = Falsen .Underline = wdUnderlineNonen End Withn .Collapse wdCollapseStartn .MoveStartUntil cset:="}"n .FormattedText = C.Range.FormattedTextn .FormattedText.HighlightColorIndex = CommentShadingn .FormattedText.Font.ColorIndex = CommentColorn End Withn .Deleten Next Cn ActiveDocument.TrackRevisions = TrackingStaten Application.UndoRecord.EndCustomRecordn MsgBox OriginalNum - .Comments.Count & " comment(s) converted (" & OriginalNum & " remaining)."n End WithnEnd Sub
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 © 2026 Sharon Parq Associates, Inc.
Comments