Thread: [Solved] auto data completion
View Single Post
 
Old 02-11-2010, 11:13 PM
zyzzyva57 zyzzyva57 is offline Windows 7 Office 2007
Expert
 
Join Date: Mar 2009
Location: Dawsonville, Ga (NE of Atl)
Posts: 355
zyzzyva57 is on a distinguished road
Default

One work around is
  1. Record your Macro
  2. then Insert tab > Date the way you want
Now, when you need a date, use the Macro

If it is NOT exactly the way you want, simply edit the Macro

For example, it could look like this:

Sub DateMyWay()
'
' DateMyWay Macro
'I want my Dates to show Day Month year
'
Selection.InsertDateTime DateTimeFormat:="d MMMM yyyy", InsertAsField:= _
False, DateLanguage:=wdEnglishUS, CalendarType:=wdCalendarWestern, _
InsertAsFullWidth:=False
End Sub
Reply With Quote