View Single Post
  #2   Report Post  
Graham Mayor
 
Posts: n/a
Default

*Automatically* inserting a running date in Word and not having it change
when you open the document later may be a stretch, but you can easily insert
the date with a macro whenever you want.

Sub InsertFormattedDate()
Selection.InsertDateTime DateTimeFormat:="dddd, MMMM d, yyyy",
InsertAsField:=False
End Sub

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





Makethepie wrote:
I want to create a daily log on 8 1/2 X 11 3 holed paper. I want to
type in the beginning date (ex. Saturday, January 1, 2005) and then
have the date insert itself on sucessive pages (ex Sunday, January 2,
2005). Can this be done in Word or Excel?