Carrot reference
Functions
nextAnniversary()
Given a date, returns the next upcoming anniversary of that date.
nextAnniversary(anniversaryDate, fromDate)
- anniversaryDate - the Date value to be evaluated by the function.
- fromDate - (optional) the Date from which to find the next instance of anniversaryDate.
nextAnniversary(birthDate) returns the date one year after birthDate.
nextAnniversary('2018-05-24', '2021-01-01') returns 2021-05-24.
Input type | Return type | Logic |
---|---|---|
ďťżDateďťż | ďťżDateďťż | If a Date value is passed, the year will be incremented by 1. If the optional fromDate parameter is passed, the year will either increment or decrement by the difference in the year values, depending on whether fromDate is before or after anniversaryDate. |
Unsupported data types | ďťżNullďťż | Unsupported data types return Null. |
birthday returns the equivalent of nextAnniversary(birthDate).
anniversary returns the equivalent of nextAnniversary(startDate).
ďťż