如何在Excel中轻松计算时间

发布于 2024-08-24 05:58:48 字数 258 浏览 9 评论 0原文

我想在 Excel 中进行快速计算。我的单元格 (A1) 的时间为 50:00:00。我执行 =A1+1 并得到 74:00:00。所以,我猜1=24小时=1天。但是,我尝试 =A1+1:23:45 并收到错误。有没有一种简单的方法可以在Excel中将小时数添加到小时数?如果没有,您有更好的工具吗?

请不要使用类似 =A1+1/24+23/24/60+45/24/60/60 的内容。在我看来,这并不容易。

I want to do quick calculations in Excel. I have a cell (A1) with 50:00:00. I do =A1+1 and get 74:00:00. So, I guess 1=24 hours=1 day. However, I try =A1+1:23:45 and get an error. Is there an easy way to add hours to hours in Excel? If not, do you have a better tool?

Please don't say something like =A1+1/24+23/24/60+45/24/60/60. That's not easy in my book.

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

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

发布评论

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

评论(2

说谎友 2024-08-31 05:58:48

只需使用 =A1+Time(1,23,45) 即可。

Just use =A1+Time(1,23,45) for this.

逆蝶 2024-08-31 05:58:48

您可以使用 Time 函数,该函数分别以小时、分钟、秒为参数。

因此,要将 A1 中的日期添加 1 小时,您可以输入 = A1 + Time(1,0,0)

You can use the Time function which takes as parameters, hour, minute, seconds, respectively.

So to ad 1 hour to the date in A1, you would type = A1 + Time(1,0,0)

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