Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
What do you want to do?
Calculate the number of days between two dates
Calculate the number of months between two dates
Calculate the number of years between two dates
Sub calculateDate()
Dim dteOne As Date
Dim dteTwo As Date
dteOne = ActiveDocument.FormFields("Text1").Result
dteTwo = ActiveDocument.FormFields("text2").Result
MsgBox dteTwo - dteOne
End Sub