Skip to main content

I get an error when I use DATEADD with a date I formated in another field with DATETIME_FORMAT.

Is there a way to “unformat” a date?

DATETIME_FORMAT() returns a string, so you can’t use then DATEADD(). You can:



  • Use the DATEADD() before the DATETIME_FORMAT()

  • Use DATETIME_PARSE() to get back a date, and then use the DATEADD()