I am not able to have Word 2002 automatically complete the full da

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I write a letter, I am given automatic completion of the month. When I
use the space bar, I no longer get the day and year? I have tried to go into
merge and autocompletion box is checked?
 
I don't recall it ever doing that here, though it may be a language
dependent function and UK dates do not use American layouts. Much better to
use a createdate field in the letterhead template
(http://sbarnhill.mvps.org/WordFAQs/Letterhead.htm ) to insert the date in a
letter, or use a macro:

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

than to rely on autocomplete.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top