Skip to Content

Word VBA – Avoid “There are too many spelling or grammatical errors in Document ...” message

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

When you are automating something in Word using VBA, the below message can be a nemesis. This message will wait for user input whereas you would have though the program will continue without user intervention.

To stop this message set the Grammar checked to be true

Sub Set_Spell_Grammar()

ActiveDocument.GrammarChecked = True

ActiveDocument.SpellingChecked = True

End Sub