Increment Date

Add/subtract time intervals

What It Does

Increment Date adds or subtracts a time interval from a date column. Use negative numbers to go backward in time.

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Increment Date". It's in the Date group.

Configuration

FieldTypeRequiredDescription
ColumnColumn select (date)YesThe date column to modify
AmountNumberYesNumber of units to add (negative to subtract)
UnitSelectYesday, week, month, year, hour, minute

SQL Generated

SELECT *, order_date + INTERVAL '30 day' AS due_date FROM data
Try this operation →

Notes

  • Null values are handled gracefully - operations skip or preserve nulls where appropriate.
  • You can edit any pipeline step by clicking on its card to re-open the panel with the same settings.
  • The SQL preview shows exactly what will execute - inspect it before applying.

Related Operations