The problem is that the column is interpreted as text by default. It might be easier for people if Cryptic output the date and times in ISO 8601 format as emzi0767 suggested:
In LibreOffice, you can check "Detect special numbers" when you open the CSV file. Another option would be use another column to convert the text to numbers and sort by the new column; for example,
=datevalue(I2) + timevalue(I2)
The numbers can be reformatted as dates and times.
Comments
http://perfectworld.vanillaforums.com/discussion/1194811/csv-exports
In LibreOffice, you can check "Detect special numbers" when you open the CSV file. Another option would be use another column to convert the text to numbers and sort by the new column; for example,
=datevalue(I2) + timevalue(I2)
The numbers can be reformatted as dates and times.