From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The DateAdd function returns a date to which a specified time interval has been added.
| DateAdd(interval,number,date) |
| Parameter | Description |
|---|---|
| interval | Required. The interval you want to add Can take the following values:
|
| number | Required. The number of interval you want to add. Can either be positive, for dates in the future, or negative, for dates in the past |
| date | Required. Variant or literal representing the date to which interval is added |
Example 1
Try it yourself » |
|
'Add one month to January 31, 2001 document.write(DateAdd("m",1,"31-Jan-01")) Output: 2/28/2001 |
Example
Try it yourself » |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)