Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Application.ScreenUpdating = False
For Each char In ActiveDocument.Characters
Select Case char.Font.Bold
Case True
char.Font.Bold = False
Case False
char.Font.Bold = True
End Select
Next
Application.ScreenUpdating = True
End Sub
Sub Swap_bold_by_words()
For Each char In ActiveDocument.Words
Select Case char.Font.Bold
Case True
char.Font.Bold = False
Case False
char.Font.Bold = True
End Select
Next
End Sub