How do I create a auto dated daily log?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top