LParks
LParks

Reputation: 11

Office 365 - Word macro to hide text

I have a macro to hide bookmarked text in a Word document. Now that we have upgraded to Office 356, the macro does not work. I can change other font attributes using this (make the text bold for example), but not hidden. Is the hidden attribute handled in a different way in Office 365?

If ActiveDocument.Bookmarks.Exists(bookmark) = True Then

        ActiveDocument.Bookmarks(bookmark).Range.Font.Hidden = True

End If

Upvotes: 0

Views: 2187

Answers (1)

macropod
macropod

Reputation: 13490

Your macro will work the same in Office 365 as it does in any other Office version. Check whether you have Word configured to display and/or print hidden text.

Upvotes: 1

Related Questions