Hi,
Thank you for viewing this question
I have a column named Month with string value, for example: 042017, 052018
I need to do 2 things:
1. Change this into a date format: 04-2017 (or at least the column is read as a time format)
2. Add a new column to define the Month_Name: Apr, May (without the year)
I tried DateTimeParse as follow: DateTimeParse([Month], "%b") but it returns null value
Thank you in advance