Written by Allen Wyatt (last updated May 21, 2021)
This tip applies to Word 2007, 2010, 2013, and 2016
Word includes handy spelling and grammar checkers that can take the hard edges off some of your writing. Sometimes, however, it is nice to turn those features off so you aren't distracted by the red and green squiggly lines as you are feverishly typing your masterpiece. If you want to turn off the red and green squiggly underlines, then follow these instructions:
Figure 1. The proofing options of the Word Options dialog box.
With the checkboxes clear, Word will no longer check for spelling and grammar inline and those squiggly lines won't appear. To turn them back on, simply follow the instructions, but check the checkboxes.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (6085) applies to Microsoft Word 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Word here: Hiding Errors.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Perform a grammar check, and Word displays some statistics that represent an analysis of your words. By writing a macro ...
Discover MoreWord provides handy spelling and grammar checkers. The grammar checker won't catch everything, however. One thing it ...
Discover MoreWord's grammar checker can help you correct many of the more common errors that can crop up while writing. This includes ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-05-21 23:16:55
Phil Maier
G'dy Allen,
I found Ken's comments interesting, subject for further reading. Sorry that I cannot help Larry though.
Of course having a macro, such as below, and assigning it to a keystroke like Ctrl+?,T would make it even more useful.
Thanks for all the hard, helpful work over so many years,
Phil Maier.
------
Sub Toggle_SpellCheck_OnOff()
'
' Macro Toggle_SpellCheck_OnOff
' assumes Spell & Grammar check are the same
'
Dim MyStr As String
If Options.CheckSpellingAsYouType = True Then
Options.CheckGrammarAsYouType = False
Options.CheckSpellingAsYouType = False
MyStr = "OFF"
Else
Options.CheckGrammarAsYouType = True
Options.CheckSpellingAsYouType = True
MyStr = "ON"
End If
MsgBox "Spell & Grammar checks are " & MyStr & "."
End Sub
2017-02-04 05:53:50
Ken Endacott
It may be preferable to set “Hide spelling errors…” rather than “Check spelling as you type”. They both will suppress squiggly underscores but differ in their application.
“Check spelling as you type” and “Mark grammar as you type” apply to the current user’s Word installation and will apply to any document opened by that user. If the document is subsequently opened by another user then the settings for the new user's Word installation will apply.
“Hide spelling errors in this document only” and “Hide grammar errors in this document only” apply only to the current document and the settings travel with the document. If another user opens the document then the settings for that document will apply.
Irrespective of the settings, the spell checker continues to run in background, you cannot turn it off. A list of spelling and grammar errors is maintained as you make text changes but are not visible (no squiggly underscores are shown) if “Check spelling as you type” is cleared or “Hide spelling errors… “ is set. However, you can still see the errors one by one in Review tab > Spelling & Grammar.
Incidentally, there are a total of 9 conditions that must be met before a squiggly lines appears under a word.
2017-02-03 09:29:13
Larry
Great tips, but having Word for Mac 2011, a lot of the features are different.... no option box (that I can find), and no file tab in the ribbon....
So, would be nice to have something for Mac.....
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments