Hey guys, I have a lot text that needs to have bold reversed. I found this macro somewhere, it works but is real slow. Any suggestions to rewrite and make faster, or is this the best it gets? Thanks
Code:
Sub ReverseBold()
Dim c
For Each c In Selection.Characters
c.Font.Bold = Not c.Font.Bold
Next c
End Sub