将 hh:mm:ss.00 舍入为 hh:mm:ss
我试图在 OpenOffice Calc 中对时间 (hh:mm:ss.00) 进行四舍五入,但没有成功。
例如,我尝试将以下时间四舍五入为 HH:MM:SS
01:41:32.69 -> 01:41:33
01:45:59.20 -> 01:46:00
01:31:48.62 -> 01:31:49
01:01:56.12 -> 01:01:57
我尝试使用:
mround(A1,1/24/60/60)
但它不起作用。
有什么想法吗?
I'm trying to round up time (hh:mm:ss.00) in OpenOffice Calc, but to no success.
For example, I am trying to round up the following time to HH:MM:SS
01:41:32.69 -> 01:41:33
01:45:59.20 -> 01:46:00
01:31:48.62 -> 01:31:49
01:01:56.12 -> 01:01:57
I've tried using:
mround(A1,1/24/60/60)
but it does not work.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现使用天花板功能有效。
感谢大家的阅读!
I found using the ceiling function works.
Thanks for reading everyone!