date_add
Adds a duration or date fields to a date.
Target
Signature
1date_add(value, ...)Adds a duration or date fields to a date.
date_add is a global callable that can be used wherever an expression is valid. date_add handles calendar, duration, or formatting behavior. Store values in structured date or duration form and format them only when presenting text.
Parameters
value- Required value. Supply
valuepositionally unless the signature shows a keyword form. ...- Additional values may be supplied after the earlier arguments.
Examples
Basic call
1date_add(date, -day=1)The example shows the normal call shape. Adapt variable names, validation, and surrounding error handling to the context.