View Single Post
 
Old 04-05-2020, 09:12 AM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 591
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

I've not worked with WORD .. however, based on the line of code you provided ... try
this :

Code:
Option Explicit

Sub ReviewSel()
    If CommandBars("Reviewing").Visible = False Then
        CommandBars("Reviewing").Visible = True
    Else
        CommandBars("Reviewing").Visible = False
    End If
End Sub
Reply With Quote