This question is very analogous to Best timestamp format for CSV/Excel?:
I'm writing a CSV file. I need to write time spans (a.k.a. time differences) that are accurate at least to the second, and preferably to the millisecond. What's the best format for timestamps in a CSV file such that they can be parsed accurately and unambiguously by programs like Excel with minimal user intervention?
Preferably in a format that is still easily humanly parseable even if it spans several days, i.e. instead of 265:00:00
something where a human can spot that it is 11 days without doing calculations in his head.
I should add that I am generating the CSV outside of Excel, so this is not about getting data out of Excel, or formatting data in Excel, but how to format a plain CSV file so that both Excel and Humans can make sense of time span values.