That code has several issues, most notably the use of smart quotes in the code and the line
Code:
Selection.WholeStory.Font.Bold = wdToggle
is not a valid VBA command
I guess he meant
Code:
Selection.WholeStory
Selection.Font.Bold = wdToggle
I have not attempted to establish if the code actually does what you require as that remains vague.