使用if else条件计算excel中两年之间的差异

时间:2016-08-18 05:43:15

标签: excel date if-statement difference

我想计算第二个日期(年)和第一个日期(年)的差异。 我不能在excel中编写公式。

if(quitDate is not empty)
{
  quitDate - startDate
}
else 
{
  presentDate - startDate
}

我只知道这两个公式= YEAR(NOW)-YEAR(A1) 和=年(B1) - 年(A1)

1 个答案:

答案 0 :(得分:1)

我建议:

success: function(response, newValue) {
        ...
        }

我在两个日期使用了命名范围(每个单元格)。我想你更愿意用合适的=IF(quitDate<>"",quitDate-startDate,NOW()-startDate) 引用替换它们,以便复制更容易。