在 MS Excel 中将时间格式 mm.ss.dd 转换为秒

发布于 2024-11-03 10:08:30 字数 123 浏览 1 评论 0原文

我有一个 Excel 文件,其时间格式如下:mm.ss.dd(dd 是逗号后面的数字)。

示例:

12.54.88
4.6.21

如何将其转换为秒?

I have an Excel file with times in this format: mm.ss.dd (dd are the numbers behind the comma).

Examples:

12.54.88
4.6.21

How do I convert this to seconds?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-11-10 10:08:30

假设单元格 A2 中的时间格式为上述格式,请使用公式 LEFT(A2,FIND(".",A2)-1)*60+MID(A2,FIND(".",A2) +1,FIND(".",A2,FIND(".",A2))-1)+MID(A2,FIND(".",A2,4)+1,2)/100 至转换为秒。

1.2.30 = 1x60+2+3/100 = 62.30 秒

抱歉,我无法发布公式工作的屏幕截图,但我认为这是不言自明的。公式计算前两位小数点的位置以进行计算。

Assuming that you have your time in the above format in the cell A2 use the formula LEFT(A2,FIND(".",A2)-1)*60+MID(A2,FIND(".",A2)+1,FIND(".",A2,FIND(".",A2))-1)+MID(A2,FIND(".",A2,4)+1,2)/100to convert to seconds.

1.2.30 = 1x60+2+3/100 = 62.30 seconds

Am sorry but I am unable to post a screen shot of the working of the formulae but i think it is self explanatory. Formula calculates the position of the first two decimal points to work the calcualtion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文