» Useful Keyboard Shortcuts for Microsoft Word’s ‘Track Changes’

track_changes_header

Is anyone tired of repeatedly clicking on the annoying Track Changes buttons in Microsoft Word? I know I was, so I created some keyboard shortcuts to help save some of my time and sanity.

Inciting Incident

Today I was merging some changes in a very large Microsoft Word document (which didn’t have track changes turned on). To do this, I opened up the BASE MS Word document (the document where the changes were originally made from) and then used the Compare and Merge Documents… functionality (located under the Tools Menu) to compare it to the document that had the new changes.

The result of the above produces a merged document with Track Changes turned on; however, the bad part is that it had a couple hundred changes that I had to manually review for accuracy. Moreover, I had to accept the changes that were correct, and fix the ones that weren’t; therefore, I couldn’t just accept all the changes at once.

This made me a sad panda because that meant I had to click the “Next Change” and then “Accept Selected Changes” or “Reject Selected Changes” buttons over and over. However, then I remembered that keyboard shortcuts were meant to simplify these types of problems.

SIDE NOTE: Now here’s Billy Mays to talk about Keyboard Shortcuts…

Feel the Power of Keyboard Shortcuts!

Teh Shortcutz

The keyboard shortcuts that I chose to map were much like the Emacs keyboard shortcuts during a string replacement. Here is the map of the Microsoft Word commands and the keyboards I mapped:

  • AcceptAllChangesInDoc
    • CTRL + ALT + SHIFT + !
  • AcceptChangesSelected
    • CTRL + ALT + SHIFT + SPACE
  • RejectChangesSelected
    • CTRL + ALT + SHIFT + DEL
  • NextChangeOrComment
    • CTRL + ALT + SHIFT + n
  • PreviousChangeOrComment
    • CTRL + ALT + SHIFT + p

You will find these MS Word commands to bind to in the Customize Keyboard dialog box.

Teh Methodz

To bind keyboard shortcuts to the Track Changes commands, do the following steps:

1.) Select the tiny arrow at the end of the Reviewing Toolbar, click Add or Remove Buttons and select Customize…

choose_to_customize

2.) Select the Keyboard… button at the bottom of the dialog box

choose_keyboard

3.) Select the Tools category and find the command you want to bind (@see the list in the previous section)

select_tools_key_class

4.) Once you have selected the command you want to bind (#1 in the figure below), put your cursor in the shortcut key area and type the combination of keys you want to use to invoke that command (#2 in the figure below) and click Assign (#3 in  the figure below).

key_for_accept_changes

5.) Notice that the command now has your specified key in the list of Current keys, and hit Close

accept_key_for_accept_changes

6.) Pat yourself on the back. You now have a way to easily navigate any tracked changes!

Advanced Mode

I then decided that I was still pressing too many buttons, and I wanted to make it function even more like the Emacs replacements.

In Emacs, when you hit SPACE in a replacement, it replaces the curent occurrance automagically goes to the next occurrence.

Well, I then made the MS Word Macro that emulates the Emacs functionality…

Sub AcceptChangeAndViewNext()
    ' This next line to disregard errors
    On Error Resume Next
    WordBasic.AcceptChangesSelected
    WordBasic.NextChangeOrComment
End Sub

Just create the macro using the above code, and go to the Keyboard customization dialog box, and instead of selecting ‘Tools’ from the categories list, select the Macros category and pick the AcceptChangeAndViewNext macro and bind it to your favorite keyboard shortcut.

1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 5.00 out of 5)
Loading ... Loading ...

7 Responses to “Useful Keyboard Shortcuts for Microsoft Word’s ‘Track Changes’”


  1. 1 mama

    Thanks for the tips, it is hard to find out section as u mentioned in microsoft office 2003; it works well in 97.

  2. 2 Zoltan Till

    Very useful trick, thanks.

  3. 3 Joshua Knight

    Thank you so much for the shortcuts! This is EXACTLY what I was hoping to find in my Google search. I added one more macro, RejecttChangeAndViewNext. I assigned the following shortcut keys for these two:
    AcceptChangeAndViewNext – CTRL ALT SHIFT UpArrow
    RejecttChangeAndViewNext – CTRL ALT SHIFT DownArrow

    Now my review changes is a cinch!

  4. 4 Daniel

    Macro is very handy, but Word crashes when you try to use the macro on a table. Not sure why!

  5. 5 Andre

    Thanks much for the tips! Very helpful.

  6. 6 Dmitry

    Thank you very much! Using Macro + Shotcut key is very convenient! This is even more than what I was looking for ;)

  7. 7 Ravi

    Simply super…saved lot of pain and time…

Leave a Reply