I have date column in the csv file as string data type in the form of excel numeric date.
USER | ENDTIME |
ABC | 42401.043761574 |
DEF | 42401.045625 |
Ideally I am trying to get the out put as here under
USER | ENDTIME |
ABC | 2/1/2016 1:03:01 |
DEF | 2/1/2016 1:05:42 |
I tried the date time tool to convert the string to the desired date format but it gives an error as "DateTime_Out:Invalid Year....is not a valid number record#.."
Any help on this?
I think you have the basics in a different post you made here...
Check out my idea there for splitting the number into a whole number and decimal and treating the time part of it independently, and then merging them back together.