Excel 添加一小时
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不过,也许这应该发布在超级用户上。
Although, maybe this should be posted on Super User.
在单元格 A1 中输入时间。
在单元格 B2 中,输入
=A1+1/24
In cell A1, enter the time.
In cell B2, enter
=A1+1/24
这也可能对您有帮助。这是一个条件语句,如果单元格为空,它将用默认日期填充单元格,但如果它是有效的日期/时间,则会减去一小时并将其放入单元格中。
您还可以用
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.
You can also substitute
TIME
withDATE
to add or subtract a date or time.