May 05, 2019 01:58 AM
I’m wondering how I can transform the formula to date format. I have the date 15/04/2019 20:46, but I got it using formulas. Now I need to add some days, thats why I’m going to use DATEADD. But there is some problem. How I know we can use DATEADD just with date format.
Solved! Go to Solution.
May 05, 2019 04:30 AM
I’m assuming that this is because your formula date is being considered a string - you should be able to convert it to a Datetime with the following:
DATETIME_PARSE({Formula Date},‘DD/MM/yyyy hh:mm’)
I hope this helps?
May 05, 2019 04:30 AM
I’m assuming that this is because your formula date is being considered a string - you should be able to convert it to a Datetime with the following:
DATETIME_PARSE({Formula Date},‘DD/MM/yyyy hh:mm’)
I hope this helps?
May 06, 2019 03:15 AM
Yes, thanks! :heart_eyes: