ADD_TO_DATE
Last updated
Was this helpful?
Last updated
Was this helpful?
The function ADD_TO_DATE adds a given number of years, months, weeks, or days to a given Date.
This function takes three pieces of input: a , a , and a . The string designates which value in the given Date will be modified: "year", "month", "week", or "day". This function subtracts the given Number from the designated value, and returns the resulting . Calculation takes into account irregularities such as daylight savings time and leap years.
date
(required, type: Date
) Any valid Date.
number
(required, type: Number
) The number of units to be added to the given Date. This number can be negative; if given a negative number, ADD_TO_DATE will added the negative number from the specified value in the Date, ultimately decreasing the original value.
unit_string
(required, type: string
) The units in the given Date that will be modified: "year", "month", "week", or"day". In order to be correctly parsed by ADD_TO_DATE, the given string must exactly match one of the relevant values given by .
modified_date
(type: Date
) The Date that results from adding given number of units from the given Date. Calculation takes into account irregularities such as daylight savings time and leap years.
Assume all examples have access to the following Date:
The following example takes the date described in example_date
and adds 3 days to it. Not that the returned Date is identical to example_date
, save for the day value:
The following example takes the date described in example_date
and adds 10 months to it. Note how this results in a change not only in the month value of the resulting Date, but also in the the year:
The following example takes the date and time described in example_date
and adds -1 day to it. Note how this effectively subtracts 1 to the given day value:
If ADD_TO_DATE is given a unit_string
it cannot parse, it simply returns the given Date unmodified, such as in the following example:
Adding negative values is the same as subtracting positive values, allowing ADD_TO_DATE to mimic the functionality of .