Excel公式从日期中减去天数

发布于 2024-08-28 07:01:38 字数 102 浏览 5 评论 0原文

Excel中有没有办法让公式执行如下操作:

= 12/20/2010 - 180

这需要特定日期(在本例中为12/20/2010)并减去 180 天 。 。

is there a way in Excel to have a formula that does something like this:

= 12/20/2010 - 180

which would take a certain date (12/20/2010 in this case) and subtract 180 days . .

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

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

发布评论

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

评论(5

心碎的声音 2024-09-04 07:01:38

假设原始日期位于单元格 A1 中:

=DATE(YEAR(A1), MONTH(A1), DAY(A1)-180)

Assuming the original date is in cell A1:

=DATE(YEAR(A1), MONTH(A1), DAY(A1)-180)
爱格式化 2024-09-04 07:01:38

假设原始日期位于单元格 A1 中:

=A1-180

至少适用于 Excel 2003 和 2010。

Assuming the original date is in cell A1:

=A1-180

Works in at least Excel 2003 and 2010.

年少掌心 2024-09-04 07:01:38

您可以像这样粘贴它:

= "2010-12-20" - 180

并且不要忘记将单元格格式设置为日期 [CTRL]+[F1] / 数字选项卡

You can paste it like this:

= "2010-12-20" - 180

And don't forget to format the cell as a Date [CTRL]+[F1] / Number Tab

筱果果 2024-09-04 07:01:38

以下是对我有用的方法(Excel 14.0 - 又名 MS Office Pro Plus 2010):

=DATE(YEAR(A1), MONTH(A1), DAY(A1) - 16)

它采用单元格 A1 中的日期(格式 mm/dd/yyyy)并减去 16 天,输出格式为 mm/dd/yyyy。

Here is what worked for me (Excel 14.0 - aka MS Office Pro Plus 2010):

=DATE(YEAR(A1), MONTH(A1), DAY(A1) - 16)

This takes the date (format mm/dd/yyyy) in cell A1 and subtracts 16 days with output in format of mm/dd/yyyy.

淡淡離愁欲言轉身 2024-09-04 07:01:38

假设第一个日期位于A1 单元格 & 第二个日期位于B1单元格

确保A1单元格类型都在B1单元格中 B1日期
然后只需将以下公式放入 C1 中:

=A1-B1

这个公式的结果对您来说可能看起来很有趣。
然后将C1 的单元格类型更改为GENERAL

它会给你天数的差异。

您还可以使用此公式获取一年中的剩余天数或根据需要更改公式:

=365-(A1-B1)

Say the 1st date is in A1 cell & the 2nd date is in B1 cell

Make sure that the cell type of both A1 & B1 is DATE.
Then simply put the following formula in C1:

=A1-B1

The result of this formula may look funny to you.
Then Change the Cell type of C1 to GENERAL.

It will give you the difference in Days.

You can also use this formula to get the remaining days of year or change the formula as you need:

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