Hi Community,
I'm a newbie to Alteryx and was looking for some help in understanding DateTimeParse.
I've used the following formula
DateTimeParse(
ToString([DATES_DATE_MONTH]) + ' '
+ PadLeft(ToString([NEW_DATES_DAY2]), 2, '0') + ' '
+ ToString([DATES_DATE_YEAR])
, '%m %d %Y')
Which is working rather well except for instances where ;
[DATES_DATE_MONTH] is null
[NEW_DATES_DAY2] is 1 (1 is a substitute vale for null - updated in a upstream step in the flow)
[DATES_DATE_YEAR] is 2016 etc.
This produces a result of 2016-01-20.
Any ideas why this is the case?
Many thanks
Darrell