DATE_ADD()
DATE_ADD(date, value, [unit])
API Version | 2.7.9 and higher |
---|
Adds a value to a date and returns the final date.
If the DATE provided does not include a time part (e.g. "2019-19-21"), the value returned will have the same format unless the calculation modifies the time part (for example when adding seconds, minutes or hours), in which case a full date time string will be returned.
Input parameters
Parameters | Type | Default | Required | Description | Default |
---|---|---|---|---|---|
| Any |
| Yes | Base date Formula TODAY() is also supported |
|
|
| Yes | Value to increment the date. Negative values are allowed. Two types of value are accepted
|
| |
| "D" | No | Units in which VALUE is expressed. Accepted values are:
If no unit is specified, then "D" is the default value If VALUE is expressed as a time string, then this parameter is ignored |
|
Return value
Type | Description |
---|---|
Returns the final date after adding the requested value. The date returned has the format "YYYY-MM-DD hh:mm:ss" or "YYYY-MM-DD" depending on the initial format of DATE. |
Execution
Always. Calculated on-the-fly whenever an ITEM of a FORM is changed (by means of form_set_answer(), or when the FORM is opened
Examples
Formula | Description |
---|---|
DATE_ADD("2019-05-12 12:21:05", 5) | No UNIT specified, so "D" is assumed. The final result would be "2019-05-17 12:21:05" |
DATE_ADD("2019-05-12 12:21:05", "-01:05:00") | Value expressed as a time string. The final result would be "2019-05-12 11:16:05" |
DATE_ADD($1, 5, "M") | Adds 5 months to the date in ITEM $1 |
DATE_ADD("2019-05-12", 5, "D") | Base date does not have time part.. The final result would be "2019-05-17" because the calculation does not generate a time part |
DATE_ADD("2019-05-12", 5, "s") | Base date does not have time part.. The final result would be "2019-05-17 00:00:05" because the calculation generates a time part |
DATE_ADD("2019-05-12", 1.5, "D") | Add a decimal number of days. The result would be "2019-05-13 12:00:00" |