Share via

Track Changes Show Revision Inline by Default

Anonymous
2015-07-16T19:04:12+00:00

Is it possible to set Track Changes Markup Option to Show All Changes Inline to a default setting that does not require being set every time a document is opened? (using Word 15.11.2)  Thanks.

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2015-07-16T23:14:22+00:00

Use this macro, which will run automatically every time you open a document:

Sub AutoOpen()

ActiveWindow.View.RevisionsMode = wdInLineRevisions

End Sub

If you don't know how to enable macros, follow these instructions:

To add the macro to your Normal.dotm template

  • In your main menu bar, select Tools > Macro > Visual Basic Editor
  • You should see a Project box
  • In there, select Normal (Normal.dotm)
  • In the main menu bar of the Editor, select Insert > Module
  • A new window will open
  • Paste the above code (from "Sub" to "End Sub")
  • You can save your Normal.dotm template now (File > Save Normal.dotm) or Word will prompt you when quitting
  • In the main menu, select Close and return to Microsoft Word (or do Command Q)

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

7 additional answers

Sort by: Most helpful
  1. Anonymous
    2016-11-17T14:34:45+00:00

    I created the macro, and can see it in there, but it doesn't work.  Still opens with baloons as the default.

    Was this answer helpful?

    0 comments No comments
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Anonymous
    2016-01-28T01:00:57+00:00

    Is it just me, or is it dumb that you need to run a macro rather than being set this as a preference?

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2015-07-17T00:52:19+00:00

    Thanks, that did the trick. I use an AutoOpen macro for other things, I should have thought of it.

    Was this answer helpful?

    0 comments No comments