Example 1
DateAddDays(Today(),2)
Will add two days to the result of the Today function.
Adds a specified number of days to a date value.
DateAddDays(Start Date, Days)
Where:
Start Date The date to adjust.
Days The number of days to add. Negative values can be used to subtract.
DateAddDays(Today(),2)
Will add two days to the result of the Today function.
DateAddDays(Today(),-2)
Will subtract two days from the result of the Today function.
DateAddDays(DatePickerReturn,2)
Will add two days to the result coming from the DatePicker control.