I want to insert the date without changing previous dates

A

AussieJay

At the moment, when I insert today's date in a day-by-day diary, Word changes
all the previously-inserted dates and gives them all today's date.
 
G

Graham Mayor

The only way that would happen is if you have inserted date fields, which
report the system date of the computer. You need to insert the date as text.
There is an option to do that in the insert date dialog, or you could create
a macro to insert the date as text in any format you wish.
e.g.
Sub InsertUKFormatDate()
With Selection
.InsertDateTime DateTimeFormat:="d" & Chr(160) & _
"MMMM" & Chr(160) & "yyyy", InsertAsField:=False
End With
End Sub

OR

Sub InsertUSFormatDate()
With Selection
.InsertDateTime DateTimeFormat:="MMMM" & Chr(160) & _
"d," & Chr(160) & "yyyy", InsertAsField:=False
End With
End Sub
http://www.gmayor.com/installing_macro.htm

There will be no record in the document that will allow the date fields to
be turned back to fixed dates. You will have to edit them manually.

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

Top