减去一天中的两次即可得到间隔长度(以小时为单位)
我正在努力在 Excel 中创建时间表,我的格式如下。
A B C D E F
Date Day Time IN Time OUT Lunch Total
8/29/2011 Monday 9.00 18.00 0.45 8.55
我无法在“总计”字段中获得正确的时间。正确的值应该是 8.15 而不是 8.55。
这是我当前用于计算总计的公式。
=D2-C2-E2
有人可以帮我得到正确的公式吗?
I am working on creating Time sheet in excel and i have the format like this.
A B C D E F
Date Day Time IN Time OUT Lunch Total
8/29/2011 Monday 9.00 18.00 0.45 8.55
I am not able to get correct hours in Total field. Correct value should have been 8.15 and not 8.55.
This is the current formula i am using in to calculate Total.
=D2-C2-E2
Can someone please help me get the formula right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要在单元格中键入
9.00
,而是键入9:00
(并将单元格格式设置为时间,以确保它们正确显示)。公式本身很好,但目前你只是减去小数,当然正确的结果是 8.55。
Instead of typing e.g.
9.00
in your cells, type9:00
(and format your cells as time to make sure they display correctly).The formula itself is fine, but currently you're just subtracting decimal numbers, and of course the correct result is 8.55.