In a formula column, the DATE_ADD() function displays a date obtained by adding a number of days to a date column. It is handy to calculate a due date or a follow-up date. The result is a date.
Syntax
DATE_ADD(date_column, number_of_days)
Parameters
Examples
Move a date forward
To add 3 days to a quote sending date:
DATE_ADD($Quote sent, 3)
Move a date back
To move a delivery date back by 4 days, use a negative number:
DATE_ADD($Customer delivery, -4)
Calculate a one-year due date (+365 days)
To calculate a due date one year after a signature date:
DATE_ADD($Signature date, 365)
For an exact calendar span (accounting for leap years), prefer YEAR_ADD($Signature date, 1).
Your formula returns 0 or stays empty
Go further
DATE_ADDNB
When the number of days to add varies per record and is already stored in a column, rather than a fixed value.
Or continue with
Formula glossary
All available operators and functions, sorted by category.