DATEADD

The DATEADD function adds a specified number of days to the input date. The input date should be in MM/DD/YYYY format. Node references are also accepted as arguments. Use DATE.SET() to set the format of the output date.

Syntax

dateadd(date, value)

Arguments

date – The date which is passed as input to the function.

value – The number of days to be added to the input date. Can be positive or negative.

Return value

Date

Example

DATEADD('8/2/2023',5)

Returns 7/8/2023.

Last updated