DATEADD Add specified number of days to a date variable |
Top Previous Next |
This script command is used to calculate a new date by adding the specified number of days from the date value stored in the [ variable ] argument. The date string value must be formatted in the same manner as the %date internal variable.
Note: The %date internal variable should not be passed directly in the [ variable ] argument of this command. To use the value of %date with DATEADD you must first assign its value to a user defined variable and then pass that user defined variable to the [ variable ] argument.
Consider the example below where 14 days is added to a variable containing the current date.
DATEADD today 14 DISPLAY today
The number of days to add may also be expressed in a variable as shown below.
SET today = %date SETNUM x = 14 DATEADD today x DISPLAY today
Related command(s): DATESUB, IFDATE, DATETIMEADD, DATETIMESUB, IFDATETIME See also: Using the %date, %datetime, and %time Variables, Comparing Local and Remote Files, Comparing File Dates and Times |