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)
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.