使用if else条件计算excel中两年之间的差异
Calculating difference between two years in excel with if else condition
我想计算第二个日期(年)和第一个日期(年)的差值。
我无法在 excel.
中编写公式
if(quitDate is not empty)
{
quitDate - startDate
}
else
{
presentDate - startDate
}
我只知道这两个公式 =YEAR(NOW)-YEAR(A1)
和 = YEAR(B1)-YEAR(A1)
我建议:
=IF(quitDate<>"",quitDate-startDate,NOW()-startDate)
我为两个日期使用了命名范围(每个单元格)。我想您更愿意用合适的 A1
引用来替换那些,以使复制更容易。
我想计算第二个日期(年)和第一个日期(年)的差值。 我无法在 excel.
中编写公式if(quitDate is not empty)
{
quitDate - startDate
}
else
{
presentDate - startDate
}
我只知道这两个公式 =YEAR(NOW)-YEAR(A1) 和 = YEAR(B1)-YEAR(A1)
我建议:
=IF(quitDate<>"",quitDate-startDate,NOW()-startDate)
我为两个日期使用了命名范围(每个单元格)。我想您更愿意用合适的 A1
引用来替换那些,以使复制更容易。