如果只有启动&结束MM:SS

发布于 2025-01-22 05:31:04 字数 219 浏览 0 评论 0原文

让我每小时需要excel,只有开始&按照图像的结束日期时间需要任何公式或VBA命令进行计算。

Having Excel where I get required hourly down time with only having start & end date time as per the images required any formula or vba command for calculation.

enter image description here

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

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

发布评论

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

评论(1

青朷 2025-01-29 05:31:04

请注意,您正在混合输出中的不同类型的数据。值03:39是时间值,而60,00,0,0是十进制的时间值。如果要进行任何计算,则应考虑将所有这些都用十进制。

另外,您可以使用CF规则来请参阅所需的值,但实际价值应该是小数。

无论如何,我设法这样做:

”在此处输入图像描述”

=IF(HOUR($A2)>HOUR(C$1);0;IF(HOUR($A2)=HOUR(C$1);TEXT("00:"&MINUTE($A2)&":"&SECOND($A2);"mm:ss");IF(HOUR($B2)>HOUR(C$1);TEXT(60;"0,0");IF(HOUR($B2)=HOUR(C$1);TEXT("00:"&MINUTE($B2)&":"&SECOND($B2);"mm:ss");TEXT(0;"0,0")))))

将其拖到右和底部。

请注意,我正在使用文本函数强迫格式,因此输出不是数字,而是文本,因此您无法对其进行任何算术。这就是为什么您还应该考虑使用CF规则

,具体取决于您的区域设置,mm:ss0,0我在公式中使用的掩码可能会有所不同。个人电脑

Please, notice you are mixing different types of data in your output. Value 03:39 is a time value while 60,0 or 0,0 is decimal. You should consider working all of them in decimal if you are going to make any calculations.

Also, you could play with CF rules to see the values as you wish, but real value should be decimals.

Anyways, I managed to do it with this:

enter image description here

=IF(HOUR($A2)>HOUR(C$1);0;IF(HOUR($A2)=HOUR(C$1);TEXT("00:"&MINUTE($A2)&":"&SECOND($A2);"mm:ss");IF(HOUR($B2)>HOUR(C$1);TEXT(60;"0,0");IF(HOUR($B2)=HOUR(C$1);TEXT("00:"&MINUTE($B2)&":"&SECOND($B2);"mm:ss");TEXT(0;"0,0")))))

Drag to right and bottom.

Notice I'm forcing the format with the TEXT function, so the output is not numeric but a text so you cannot do any calculus with it. That's why you should consider using CF rules

Also, depending on your regional setup, masks like mm:ss or 0,0 that I use in the formulas may be different in your PC

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