If you need to insert a date for a specific locale in MS Word, try the following subroutine:
Sub InsertLocalizedDate()
' To insert a date using a particular locale.
Selection.InsertDateTime DateTimeFormat:="dd MMMM yyyy", InsertAsField:= False, DateLanguage:=wdEnglishUK, CalendarType:=wdCalendarWestern, InsertAsFullWidth:=False
End Sub
No Comments