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