View Single Post
 
Old 04-18-2022, 06:42 PM
Peterson Peterson is offline Windows 10 Office 2019
Competent Performer
 
Join Date: Jan 2017
Posts: 143
Peterson is on a distinguished road
Default

Try this:
Code:
Private Sub Acknowledge_Click()
    
    Dim rngBookmark As Range
    
    Set rngBookmark = ActiveDocument.Bookmarks("TextToHide").Range
    
    rngBookmark.Font.Hidden = True
    
End Sub
Reply With Quote