Skip to content

Instantly share code, notes, and snippets.

@lcrespom
Created January 3, 2022 09:54
Show Gist options
  • Select an option

  • Save lcrespom/e3af471d7752259a38ddf7e18d98765a to your computer and use it in GitHub Desktop.

Select an option

Save lcrespom/e3af471d7752259a38ddf7e18d98765a to your computer and use it in GitHub Desktop.
Spanish word macro

Spanish word macro

To set the whole document to Spanish (or any other language), create the following macro:

Sub SetSpanish()
'
' SetSpanish Macro
'
'
    pos = Selection.End
    Selection.WholeStory
    Selection.LanguageID = wdSpanishModernSort
    Selection.NoProofing = False
    Application.CheckLanguage = True
    ActiveDocument.Save
    Selection.Start = pos
    Selection.End = pos
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment