Hi All,
Please help me how to convert the below string to a date format.
effectivedate
45170
I want this to be populated as "YYYY-MM-DD".
Please assist me. Thanks
Solved! Go to Solution.
No its not working. its shows null
@Sarath27 if you're still getting nulls then it may be the case that your effectivedate field is a string - it needs to be numeric for the ToDate() conversion so you can either use a Select tool to change the data type or add another function to the expression i.e.
ToDate(ToNumber([effectivedate]))