For ad hoc date insertion in any preferred format you could save the field
construction as an autotext entry, or use a macro to insert it
Sub InsertUKFormatDate()
With Selection
.InsertDateTime DateTimeFormat:="dddd," & _
Chr(160) & "d" & Chr(160) & _
"MMMM" & Chr(160) & "yyyy", InsertAsField:=False
End With
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
Word MVP web site
http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
macropod wrote:
> Hi Ben,
>
> You can have Word open with the required date format if you add the
> field to the appropriate template.
> Also, rather than having just the DATE field, which will update
> itself every time you open an existing document, take a look at the
> CREATEDATE, PRINTDATE and SAVEDATE fields. CREATEDATE, in particular,
> is most useful, since it displays the date the document was created
> (or last saved using File|Save As).
> Cheers
>
> "Ben Graffery" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Dear Macropod,
>>
>> Thanks for your reply.
>>
>> Can i make it default? e.g. How to make {DATE \@ "dddd, d MMMM
>> yyyy"} to be default format? Do i need to change it every time when i
>> make a new document?
>>
>> Thanks
>> Ben
>>
>> "macropod" <(E-Mail Removed)> wrote in message
>> news:%23lgm%(E-Mail Removed)...
>>> Oh, and press F9 after adding/editing the date switch to update the
>>> displayed date. Cheers
>>> --
>>> macropod
>>> [MVP - Microsoft Word]
>>> -------------------------
>>>
>>> "macropod" <(E-Mail Removed)> wrote in message
>>> news:%(E-Mail Removed)...
>>>> Hi Ben,
>>>>
>>>> If this is a date that automatically updates, then it's been
>>>> created with a date field. In that case: . select the date
>>>> . press Shift-F9 to reveal the field code, which will look
>>>> something like {DATE} or {DATE \@ "MM, dd yyyy"} . add/edit the
>>>> date switch to give the format you require, eg {DATE \@ "dddd, d
>>>> MMMM yyyy"} Cheers
>>>> --
>>>> macropod
>>>> [MVP - Microsoft Word]
>>>> -------------------------
>>>>
>>>> "Ben Graffery" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>> Dear,
>>>>>
>>>>> How to change the default format of the date in header?
>>>>>
>>>>> Thanks
>>>>> BG