Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Setting Fraction Bar Overhang Spacing in the Equation Editor
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
Fred describes a problem where he works with documents that he receives from users in other countries. Fred does all his work using English (US) as his document language. When he receives documents from others, he copies pieces and parts of those documents into his own documents. What he ends up with is a document in which some paragraphs are set to English (US), some to Dutch (Netherlands), and some for German. It seems that when Fred tries to select those parts of the document (or even the entire document) and set them to English (US), it doesn't work--Word still sticks with the original, source languages.
The first thing you need to do is make sure that your system is really set to use English (US) as your default language. Assuming you are using Word 2000 or a later version, you need to disable the Office capability that allows Word to try to figure out which language you are using in a paragraph. Get out of Word and start the Office Language Settings utility. (Click here to see a related figure.) (Click Start, choose Programs, select Microsoft Office Tools, and then run Microsoft Office Language Settings.)
The utility differs a bit based on the version of Office installed on your system, but in essence you want to make sure that there are no languages selected except English (US). There should be a list of available languages shown, along with a list of languages that are enabled. Make sure that English (US) is the only one enabled, and then exit the utility. The reason you do this--set only English (US)--is because it stops Word from trying to read your mind (well, your document text) and setting the language of the paragraph based on what it thinks it should be.
Next you will want to set, within Word, English (US) as your default language. Start Word; you should have a blank document on the screen. Choose Tools | Language | Set Language to display the Language dialog box. (Click here to see a related figure.)
Make sure that English (US) is selected in the language list (it should be selected automatically) and make sure the Automatically Select Language check box is cleared. Click the Default button, then close the dialog box. If you regularly use different templates on your system, you will need to go through this same process for each template you use. (The Default button affects only the template on which the open document is based.)
Finally, if you have any existing documents that have different languages set within them, you will need to make changes to those documents. One way to do so is to use Find and Replace to change the language assigned to each paragraph:
Word should replace the language used for all instances of paragraphs in the document. If you have a lot of documents you need to change, or if you need to make the changes often, then a macro is a better approach. The following macro will step through all paragraph styles in a document and modify the language setting for each paragraph to English (US).
Sub StyleUS_English()
Dim oStyle As Style
Dim MyStyle As Variant
For Each oStyle In ActiveDocument.Styles
If oStyle.InUse = True Then
On Error Resume Next
With ActiveDocument.Content.Find
.Style = oStyle.NameLocal
End With
MyStyle = oStyle
'Do not modify any character styles
If InStr(MyStyle, " Char") = 0 Then
oStyle.LanguageID = wdEnglishUS
End If
On Error GoTo 0
End If
Next oStyle
End Sub
Tip #285 applies to Microsoft Word versions: 2000 2002 2003
Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.