Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

ROUNDTIME(<date>;<string, using a time constant>)

...

Time unitConstant
Dayd
Hourh
Minutem
Seconds

Limitation

This function can't be applied to an empty value. If a column contains empty values, consider adding a check for this, e.g.

No Format
 IF(ISBLANK(#DateColumn); null; ROUNDTIME(#DateColumn; "1d"))

...