I am new to StackOverflow, so just a heads up. Any pointers would be great :)
Anyway, I have a file that I create/use weekly in Excel 2010 that shows me date time stamps down to milliseconds. I then convert this .xslx file to a .csv. When I do, it chops off seconds. I found a solution to this originally by using this format to retain simply the seconds (not ideal, but workable):
yyyy/mm/dd hh:mm:ss.000 (.csv will chop off the .000)
Now my users are complaining about data not sorting based on the milliseconds. When I use this format, it DOES retain those milliseconds, but as soon as I convert a .csv I lose them. In Excel (.xslx), the date format will look like this:
2014/08/19 15:29:17.562
And once saved as a .csv, it looks like this:
- In the cell:
29:17.6
- In the formula bar:
8/19/2014 3:29:18 PM
I'd like the .csv to look like the Excel file. Any ideas? Thanks so much in advance!
Also as a frame of reference, this data gets uploaded and then sorted in an iPhone app based on the time, which is why this is important to my users. It is supposed to reflect the order in which they used the data the previous week.