A family of Microsoft word processing software products for creating web, email, and print documents.
I don't believe you can - and as this function causes more irritation than value, I would suggest that you insert the current date using a macro attached either to a QAT button or a keyboard shortcut and then you can have whatever date format you choose e.g. as follows
http://www.gmayor.com/installing_macro.htm
See also http://www.gmayor.com/popup_calendar.htm
Sub InsertDate()
Selection.TypeText Format(Date, "MM/dd/yyyy")
End Sub
or somewhat more adventurous
Sub InsertDate2()
Dim sDay As String, sOrd As String
sDay = Format(Date, "dd")
Select Case Right(sDay, 1)
Case Is = 1
If Left(sDay, 1) = 1 Then
sOrd = "th"
Else
sOrd = "st"
End If
Case Is = 2
If Left(sDay, 1) = 1 Then
sOrd = "th"
Else
sOrd = "nd"
End If
Case Is = 3
If Left(sDay, 1) = 1 Then
sOrd = "th"
Else
sOrd = "rd"
End If
Case Is = 4, 5, 6, 7, 8, 9, 0
sOrd = "th"
Case Else
End Select
With Selection
.TypeText Format(Date, "dddd, MMMM d")
.Font.Superscript = True
.TypeText sOrd
.Font.Superscript = False
.TypeText Format(Date, " yyyy ")
End With
End Sub
<JeffG136> wrote in message news:*** Email address is removed for privacy ***...
In my Word 2007 when I start typing today's date Word recognizes that I could be typing todays date and offers to complete the date by pressing enter. The format used is mm/dd/yy. Is there a way to change this default format to something else (like mm/dd/yyyy or others)?
Thanks for any help.
Graham Mayor - Word MVP
Posted via the Communities Bridge