Help

DATETIME_FORMAT generate error in DATEADD

Topic Labels: Formulas
1125 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Sebastian_Drage
4 - Data Explorer
4 - Data Explorer

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?

1 Reply 1

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()