Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 csv 文件中有一些数据:
21-05-2012 15:41:49.354 | 21-05-2012 15:41:54.376|
他们的格式是general
general
如何在 excel 中计算两列之间的 dateTime 差异?
(需要毫秒精度)
我还体验过 Excel 在某些情况下会忽略日期值的毫秒部分。我可以建议的最佳解决方案是将日期值作为文本导入,然后使用如下公式转换为日期
=VALUE(LEFT(A1;19))+VALUE(RIGHT(A1;3)/86400000)
一旦有了包括毫秒部分在内的值,计算差异就不成问题了,对吧?(例如,=(Value1-Value2)*86400以秒为单位获得差异。)
=(Value1-Value2)*86400