View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Jules[_3_] Jules[_3_] is offline
external usenet poster
 
Posts: 58
Default How to add 7days to today's date

Tradex, you could use a macro - set a bookmark where you require date to be
inserted and save document as template:

Sub Tester1 ()

Selection.GoTo What:=wdGoToBookmark, Name:="Date"
Selection.InsertBefore Format((Date + 7), "d MMMM yyyy")

End Sub

Distributing macros to other users
http://www.word.mvps.org/FAQs/Macros...buteMacros.htm

"How to create global event procedures similar to AutoOpen, AutoNew and
AutoClose, without using Normal.dot"
http://www.word.mvps.org/FAQs/Macros...AutoMacros.htm

"Running a macro automatically when a document is created, opened or closed"
http://www.word.mvps.org/FAQs/Macros...mentEvents.htm


"Tradex" wrote in message
...
i would like to make an automatic date seven days from todays date. is the
formula available or should i manually edit it.

thank you for you help everyone