Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Date.AddDays(dateTime as any, numberOfDays as number) as any
About
Returns the date, datetime, or datetimezone result from adding numberOfDays days to the datetime value dateTime.
dateTime: Thedate,datetime, ordatetimezonevalue to which days are being added.numberOfDays: The number of days to add.
Example 1
Add 5 days to the date, datetime, or datetimezone value representing the date 5/14/2011.
Usage
Date.AddDays(#date(2011, 5, 14), 5)
Output
#date(2011, 5, 19)