Forum Discussion
How to clean the different date format in same column
- 5 years ago
Anonymous , Try to change the data type to date. I think it will convert it into data after that you can choose any format you want from the column property.
For me it became date by default at time of loading
or a new column like
if(len[date]) =6 , left([date],4) & "20"& right([Date],2), [Date])
Anonymous , Try to change the data type to date. I think it will convert it into data after that you can choose any format you want from the column property.
For me it became date by default at time of loading
or a new column like
if(len[date]) =6 , left([date],4) & "20"& right([Date],2), [Date])
- Anonymous5 years agoNot applicable
amitchandak your code worked, also I found another way(may not be very technical solution), I replaced the - with /1/ to forth the format to the US date format like Apr/1/19 or Apr/1/2019,
thanks again