Consulting

Results 1 to 3 of 3

Thread: Looking for VBA to show tracked changes and hide comments in Word Document

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    If you want to show only tracked changes and hide comments, you can use the following VBA code:
    Sub ShowTrackedChangesOnly()
        With ActiveWindow.View
            .ShowRevisionsAndComments = True
            .RevisionsView = wdRevisionsViewFinal
            .ShowComments = False
        End With
    End Sub
    Last edited by georgiboy; 04-01-2024 at 04:40 AM. Reason: Edited format of VBA
    Ezekiel Moen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •