Hello Experts,
I am trying to evaluate no. of days between 2 dates which are in string format as "06/30/2120" and "06/30/2021". The result is coming as blank can anyone help.
Hi @ferha_jafri
You can use formula like below.
DateTimeDiff(DateTimeParse([Date1],"%m/%d/%Y"),DateTimeParse([Date2],"%m/%d/%Y"),"days")
Workflow:
Hope this helps : )
Alteryx accepts only datetime format of yyyy-mm-dd rest other formats are considered as string. Please use datetimeparse() function to parse date to proper date format.