In a formula column, the DATE_ADDNB() function displays a date obtained by adding, to a date column, the number of days held in a whole number column. The result is a date.
The key point: the initial date counts as a full day. DATE_ADDNB(10/10, 3) returns 12/10 (10/10 counts as the first day). The result is therefore one day off compared with DATE_ADD(), which does not include the starting date in the count.
Syntax
DATE_ADDNB(date_column, number_column)
Parameters
Examples
Calculate a reminder date
From a last meeting date and a delay stored in a column, TimeTonic adds that number of days to return the reminder date.
DATE_ADDNB($Last meeting, $Reminder)
Your formula returns 0 or stays empty
Go further
DATE_ADD
For a strict day offset, without counting the starting date.
Or continue with
Formula glossary
All available operators and functions, sorted by category.