View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Steve Yandl[_3_] Steve Yandl[_3_] is offline
external usenet poster
 
Posts: 11
Default I want to calculate a date 1 year ahead of a date in a bookmark

Terry,

See if something like this would work.

Sub DateReCalc()
Dim strOldDate As String
Dim dteNewDate As Date

strOldDate = ActiveDocument.Bookmarks("origDate").Range.Text
dteNewDate = DateAdd("yyyy", 1, DateValue(strOldDate))

MsgBox dteNewDate

End Sub

Steve Yandl


"Terry Kinnard" wrote in message
...
I want to be able to calculate a new date 1 year ahead of a date that is
stored or entered in a bookmark so that if the value under the bookm ark
changes the calculated date value will also change. In Excel I can easily
do
date calculation but if it's available in Word help is NO help.