自动递增日

时间:2017-05-28 10:44:19

标签: google-sheets

我需要填写全年增加一天的日期。如何以自动方式制作?

enter image description here

UPD:

我在2017-06-12

中有B60

如果我加了24小时,我还有前一天。为什么呢?

=B60+time(24,0,0)

enter image description here

如果我增加23小时 - 天增加工作。

=B60+time(23,0,0)

如果enter image description here

4 个答案:

答案 0 :(得分:2)

原因

_clist

不工作的是00:00:00和23:59:59之间的时间存储为0到(差不多)1之间的值。您可以从TIME函数获得的最大值是= TIME (23,59,59) - 如果你输入= TIME(24,0,0)然后它回滚到00:00:00,它被存储为零。如果你向任何东西添加零(包括日期),你只需得到原始值。

你需要输入一天只有1的值,所以公式应该是

=B60+TIME(24,0,0) 

See Time Function Documentation

答案 1 :(得分:1)

只需向下拖动第一个单元格。

答案 2 :(得分:1)

A1 =开始日期:

5/29/2017

A2 =天数:

365

A4 =公式:

=ARRAYFORMULA(ROW(INDIRECT("a1:a"&A2))+A1)

enter image description here

答案 3 :(得分:0)

来自https://github.com/android10/Android-CleanArchitecture/blob/master/domain/src/main/java/com/fernandocejas/android10/sample/domain/interactor/UseCase.javahere

  1. 输入A1值30/12/2012 08:15:00
  2. 在A2中输入公式:= A1 +时间(23; 59; 59)
  3. 根据需要将A2中的公式复制下来。