View Single Post
 
Old 04-13-2018, 04:43 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

You might try a macro like:
Code:
Sub CheckLanguage()
Application.ScreenUpdating = False
Dim Rng As Range
For Each Rng In ActiveDocument.Range.SpellingErrors
  With Rng
    If .LanguageID = wdEnglishUK Then
      .LanguageID = wdGerman
      If .SpellingErrors.Count > 0 Then ActiveDocument.Undo
    ElseIf .LanguageID = wdGerman Then
      .LanguageID = wdEnglishUK
      If .SpellingErrors.Count > 0 Then ActiveDocument.Undo
    End If
  End With
Next
Application.ScreenUpdating = True
End Sub
For PC macro installation & usage instructions, see: Installing Macros
For Mac macro installation & usage instructions, see: Word:mac - Install a Macro
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote