Format Now() Date
JudyMKE
Registered Posts: 2 ✭✭
In my recipe, I created a new column with Now(). I would like to format that date as 'mm-dd-yyyy'.
However, the result is:
Tagged:
Best Answer
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,090 Neuron
The format uses the ISO-8601 standard so use MM-dd-yyyy (mm is minute of the hour in that standard). More info below:
https://doc.dataiku.com/dss/12/formula/index.html#date-functions
https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
Answers
-
Thank you so much.