Hello,
I am new to Alteryx, I have a question regarding the date and time format.
Input
24-Jan-2022
Output Expected
2022-01-24
Solved! Go to Solution.
Hi
use Formula tool and try this expression DateTimeParse([date ],'%Y-%b-%d')
[date] >> will be your column name in the expression
It works! Thank you so much.