This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Hi,
I have a date in excel but in Alteryx it switch to double. I want to keep it a date.
In Alteryx What I am trying to get
(this is how it is in the excel file when I input it)
Solved! Go to Solution.
Try using the following and see how you get on:
datetimeformat(ToDateTime(tonumber(<Insert field name>)), '%B %d, %Y %I:%M:%S %p')
The ToNumber() may not be needed in your case. If not, just remove that and try:
datetimeformat(ToDateTime(<Insert field here>), '%B %d, %Y %I:%M:%S %p')
Iirc, Alteryx can't handle milliseconds, though I may be mistaken.
@DataNath you saved the day .... Thanks man!!
No problem! Happy to help :)