Comment Navigator

Guides / Number comments

How to number comments in Word, and why the numbers disappeared

“See comment 23” used to mean something. In current Word it does not, because modern comments are not numbered. Here are the ways to get numbers back, and what each one costs.

Short answer: Word’s modern comments, rolled out in Microsoft 365 from 2021, show no comment numbers. If your version still lets you switch back to classic comments, you can number them through the Comment Text style. Otherwise a macro can write numbers into the comments themselves, or you can keep a numbered list outside the text that matches the document.

1Why modern comments have no numbers

Classic comments were balloons in the margin, labelled with the reviewer’s initials and a running number, such as [JB3]. Modern comments were redesigned around conversations — threads, replies, @mentions and a Resolve button — shown as cards beside the text or in a Comments pane. The running number did not survive the redesign, and there is no setting that turns it back on for modern comments.

2Switch back to classic comments, then number them

This depends on your Word version still offering the switch. Microsoft has added and removed it across builds, so check first.

  1. File › Options › General. If there is a box Enable modern comments, untick it and restart Word. If there is no such box, this method is not available to you.
  2. Open the Styles pane with Alt+Ctrl+Shift+S, click Options… and set Select styles to show to All styles.
  3. Find Comment Text, choose Modify › Format › Numbering, and pick a numbering format.

The numbers appear in the balloons. The catch: everyone who opens the document needs the same setting to see them, and a colleague on modern comments sees no numbers at all.

3Write the numbers into the comments with a macro

If everyone must see the same numbers whatever their settings, the numbers have to be in the comment text itself. This macro puts [1], [2]… at the start of every comment and reply, in document order.

' Prefixes every comment with its number. Run it on a copy of the document.
Sub NumberComments()
    Dim i As Long
    For i = 1 To ActiveDocument.Comments.Count
        ActiveDocument.Comments(i).Range.InsertBefore "[" & i & "] "
    Next i
End Sub

Before you run it, know what you are signing up for:

4Keep a numbered list outside the document

The approach that leaves the document alone: export the comments to Excel, where each row gets a number, the commented text and the page. Quote “comment 23” from the sheet. The steps, including a macro, are in how to export Word comments to Excel.

The weak spot is finding comment 23 back in Word. Word’s Go To (F5, then Comment) steps to the next or previous comment, optionally by one reviewer, but you are counting clicks.

5A numbered pane that stays in step: Comment Navigator

Comment Navigator is a Word add-in for Windows. In the free version, its review pane numbers every comment in document order and every reply under it: 1, 2, 2.1, 2.2. Each row shows the section heading it sits under.

6Questions

Do the numbers stay the same when comments are added?

No, in any tool, because the numbers follow document order: a new comment on page 2 shifts every number after it. Quote numbers from a list made at one moment, such as an exported sheet, and say which version of the document it was made from. Comment Navigator’s import matches answers by a hidden ID rather than the number, so renumbering does not send an answer to the wrong comment.

Can I number comments by reviewer, like JB3?

Classic comments did that in the balloon. The macro above could be changed to prefix c.Initial and a per-reviewer counter, with the same staleness problem.

Does Word’s Comments pane show numbers?

No. It lists modern comments as cards, in document order, without numbers.

Numbers without touching the document. Comment Navigator’s free pane numbers every comment and reply, and Go to # finds comment 23 in a keystroke.

See Comment Navigator → Download free