Hi all,
I have a string with dates in the format "24MAY2018" and want to convert it into a real date. Can someone help me with that?
Thanks.
/Helene
Solved! Go to Solution.
Hi @Helenet
Check this documentation on how to parse dates with DateTimeFunctions.
https://help.alteryx.com/9.5/Reference/DateTimeFunctions.htm
You can use DateTimeParse function
DateTimeParse([Date], "%d%b%Y")
Cheers,
I suggest a formula tool with expression:
DateTimeParse([Input],"%d%b%Y")