Hi everyone.
I’m new to CloverETL and i’m playing a bit with it.
I have a .csv file as input. A column of this file represents a date as a string like this: 201210
I’m trying to write the file to the output as xlsx format in which the date column is of type date.
Using the example above, i would have: (string) 201210 ----> (date) 2012-10
For now, i’ve managed to get this: (string) 201210 ----> (string) 2012-10, by using the reformat component and a bit of
CTL coding.
Should i add a second reformat componet that in turn takes the string (2012-10) and maps it to a date, or there is a better way?
Thank you!