![]() |
|
#1
|
|||
|
|||
|
I usually write in german and english. If i use a word in english it gets marked as an error, even though it's correct. Just because it's wrong in german. I have to manually select english for this specific word(s) - everytime Is it possible to show errors only if they are wrong in both languages, so that i don't have to manually switch the languages? (I would prefer not to add those words to the german dictionary.) |
|
#2
|
|||
|
|||
|
Brief answer: No, it is not possible.
What is possible:
|
|
#3
|
|||
|
|||
|
Hmm... Okay
![]() Thanks for your answer!
|
|
#4
|
||||
|
||||
|
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 Mac macro installation & usage instructions, see: Word:mac - Install a Macro
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
#5
|
|||
|
|||
|
Nice.
Elegant. Kuchen: What it does is check spelling errors to see if changing the language setting gets rid of the error report. It essentially runs two spell checks. My reading is that if it does not get rid of the errors, it puts everything back, but I could be wrong about that. If it does get rid of the errors it leaves the words marked in the appropriate language. |
|
#6
|
||||
|
||||
|
Quote:
Quote:
Correct.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
| Tags |
| languages, spell check, spellcheck |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Transparent area of a PNG show correct but print wrong
|
dedine | PowerPoint | 1 | 03-08-2016 03:41 AM |
Word does not show wrong words (but spelling checker is actually working)
|
SebastianG | Word | 3 | 01-01-2016 12:25 AM |
Page in status bar is wrong; other status bar errors, as well
|
amz | Word | 3 | 08-12-2015 02:27 PM |
| Building blocks show correctly in dropdown, but wrong building block populates in doc | wordgirl123 | Word | 0 | 10-03-2013 08:30 AM |
| Wod 2007 languages | RON BROWN | Word | 0 | 09-15-2010 07:32 PM |