I try to import an instrument log with timestamps in format YYYY-MM-DD hh:mm:ss.sss into Excel. Whenever the first digit after the decimal separator is a zero, Excel doesn't recognise the value as valid date time, but import it as text.
E.g. "2014-11-27 03:38:34.853" is imported as time, but "2014-11-27 03:38:35.079" is imported as text.
I have also tried to import everything as text, and using the TIMEVALUE() function, but runs into the same kind of problem. The first value in the example above evaluates fine, the second gives a #VALUE! error.
I guess I can use some string manipulation to finally get the information I need for my purpose, but does anyone have a clue what is going on here?
E.g. "2014-11-27 03:38:34.853" is imported as time, but "2014-11-27 03:38:35.079" is imported as text.
I have also tried to import everything as text, and using the TIMEVALUE() function, but runs into the same kind of problem. The first value in the example above evaluates fine, the second gives a #VALUE! error.
I guess I can use some string manipulation to finally get the information I need for my purpose, but does anyone have a clue what is going on here?