我想计算第二个日期(年)和第一个日期(年)的差异。 我不能在excel中编写公式。
if(quitDate is not empty)
{
quitDate - startDate
}
else
{
presentDate - startDate
}
我只知道这两个公式= YEAR(NOW)-YEAR(A1) 和=年(B1) - 年(A1)
答案 0 :(得分:1)
我建议:
success: function(response, newValue) {
...
}
我在两个日期使用了命名范围(每个单元格)。我想你更愿意用合适的=IF(quitDate<>"",quitDate-startDate,NOW()-startDate)
引用替换它们,以便复制更容易。