DATEADD
Last updated
Was this helpful?
The DATEADD function adds or subtracts a specified interval from a date value. By default, the function adds the specified number of days when the interval is not provided.
DATEADD(date, count, [interval])date: The input date.
count: The number of intervals to add or subtract. Positive values add intervals, and negative values subtract intervals.
interval (optional): The interval type to apply. Supported values include "day", "month", and "year". If not specified, the function uses "day" by default.
Returns the calculated date.
DATEADD([Open Date], 5)Adds 5 days to the Open Date value.

Adds 1 month to the Open Date value.

Last updated
Was this helpful?
Was this helpful?
DATEADD([Open Date], 1, "month")