Excel 添加一小时

发布于 2024-12-06 03:18:34 字数 105 浏览 1 评论 0原文

我在 cel A1 中有以下内容:

7:30:43 这是一个时间。

但现在我想用一个公式来增加一小时。最好的方法是什么或者我该怎么做?

I have in cel A1 with the following contents:

7:30:43
which is a time.

But now i want to use a formula to add one hour. What is the best way or how can i do this?

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

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

发布评论

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

评论(3

丢了幸福的猪 2024-12-13 03:18:34
=A1+TIME(1,0,0)

不过,也许这应该发布在超级用户上。

=A1+TIME(1,0,0)

Although, maybe this should be posted on Super User.

时光匆匆的小流年 2024-12-13 03:18:34

在单元格 A1 中输入时间。
在单元格 B2 中,输入 =A1+1/24

In cell A1, enter the time.
In cell B2, enter =A1+1/24

橘虞初梦 2024-12-13 03:18:34

这也可能对您有帮助。这是一个条件语句,如果单元格为空,它将用默认日期填充单元格,但如果它是有效的日期/时间,则会减去一小时并将其放入单元格中。

=IF((Sheet1!C4)="",DATE(1999,1,1),Sheet1!C4-TIME(1,0,0))

您还可以用 DATE 替换 TIME 来添加或减去日期或时间。

This may help you as well. This is a conditional statement that will fill the cell with a default date if it is empty but will subtract one hour if it is a valid date/time and put it into the cell.

=IF((Sheet1!C4)="",DATE(1999,1,1),Sheet1!C4-TIME(1,0,0))

You can also substitute TIME with DATE to add or subtract a date or time.

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