Forum Discussion
Calendar dates issue
- 3 years ago
Hi swebb
A date value is composed with Year, Month, Day. If your Month column only contains month names like "January"/"Jan", it cannot be changed to Date as it doesn't provide valid Year or Day for the month. You need to concatenate the month with Year and Day, then convert the new column to date type.
For example, add a new column first:
Change the data type:
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi swebb
A date value is composed with Year, Month, Day. If your Month column only contains month names like "January"/"Jan", it cannot be changed to Date as it doesn't provide valid Year or Day for the month. You need to concatenate the month with Year and Day, then convert the new column to date type.
For example, add a new column first:
Change the data type:
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Thank you, this worked for me.