在 MS Excel 中将时间格式 mm.ss.dd 转换为秒
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设单元格 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)/100
to 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.