Date Format in Word 2007

  • Thread starter Thread starter Lucien
  • Start date Start date
L

Lucien

I created a letter and I want to create a date to read MM/dd/YYYY. It is not
showing in my drop down list? Lucy
 
The dates available are dictated by the language format at the cursor. In
the top right corner of the insert date dialog, there is a window from which
you can select available languages. The US English language will provide the
date style you require.
OR
If you are creating a letter template, add a Createdate field eg {CreateDate
\@ "MM/dd/yyyy"}.
OR
If you simply want the date at the cursor, a simple plan is to add a macro
to the QAT (Quick Access Toolbar) or to a keyboard shortcut

Sub InsDate()
Selection.TypeText Format(Date, "MM/dd/yyyy")
End Sub

http://www.gmayor.com/installing_macro.htm

OR
If you want to select a particular date see
http://www.gmayor.com/popup_calendar.htm

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Got it, thanks!

Graham Mayor said:
The dates available are dictated by the language format at the cursor. In
the top right corner of the insert date dialog, there is a window from which
you can select available languages. The US English language will provide the
date style you require.
OR
If you are creating a letter template, add a Createdate field eg {CreateDate
\@ "MM/dd/yyyy"}.
OR
If you simply want the date at the cursor, a simple plan is to add a macro
to the QAT (Quick Access Toolbar) or to a keyboard shortcut

Sub InsDate()
Selection.TypeText Format(Date, "MM/dd/yyyy")
End Sub

http://www.gmayor.com/installing_macro.htm

OR
If you want to select a particular date see
http://www.gmayor.com/popup_calendar.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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