A family of Microsoft word processing software products for creating web, email, and print documents.
The following macro will do the job
Sub ToggleSpellingErrors()
Dim oRng As Range
ActiveDocument.ShowSpellingErrors = Not ActiveDocument.ShowSpellingErrors
Set oRng = Selection.Range
oRng.Collapse wdCollapseEnd
oRng.Text = Chr(32)
oRng.Text = ""
End Sub
I'm sure this would work but I was able to do it before without a macro. I just went to options / customize ribbon and under choose from commands I added it to a custom tab I had created. Problem is I can't remember the name of the command.
I found it, Hide Spelling Errors. Click once, red wavy lines show, click again, they disappear.
I prefer this to automatic spell checking