View Single Post
  #3   Report Post  
MDavison
 
Posts: n/a
Default

Thanks so much!!
-M


"Greg" wrote in message
ups.com...
Monica,

It really isn't associated with SmartTags but rather
ToolsAutocorrectAutoText and check the opiton "show autocomplete tip
for autotext and dates"

This feature is sporadic and often gets the month part OK but breaks
down with the day and year. A good option is to create a date stamp
that you can add quickly with a keyboard shortcut. The following macro
stored in your template can be assigned to a keyboard shortcut to
quickly insert the current date.

Sub DateStamp()
'
' Inserts current date

Selection.InsertDateTime DateTimeFormat:="MMMM" & Chr(160) & "d," &
Chr(160) & "yyyy", InsertAsField:=False
End Sub