I have a workflow that I used the DateTimeAdd fuction, because when coming into Alteryx it was coming up as 44183.563345 etc.
I used DateTimeAdd('1900-01-01',[INITIATIVE_DUE_DATE] - 2 ,'days') and it works great, except for the null values in my original data set are now coming back 1900-01-01. I tried to use the data cleansing tool to have those null fields blank, but it does not work.
0
Solved! Go to Solution.
Hi @jjenny50
In the data you have provided INITIATIVE_DUE_DATE is totally null. Can you take a look and let me know.
Hi @jjenny50
Since you are successfully converting to proper dates for the non-Null values, try this on the DUE DATE field:
ToString(Replace([DUE DATE], '1900-01-01', ""), 0)
That worked. Those fields are now blank. Thank you!