XL: Formula to Calculate Number of Years Between DatesID: Q34319
|
To find the number of whole years between two dates, use the following
formula
=YEAR(date2)-YEAR(date1)-IF(MONTH(date2)<MONTH(date1),1,
IF(MONTH(date2)=MONTH(date1),IF(DAY(date2)<DAY(date1),1)))
=YEAR(NOW())-YEAR(birthdate)-IF(MONTH(NOW())<MONTH(birthdate),1,
IF(MONTH(NOW())=MONTH(birthdate),IF(DAY(NOW())<DAY(birthdate),1)))
=INT((TODAY()-A1)/365.25)
=INT((TODAY()-A1)/365.25)&" Y "
&INT(MOD((TODAY()-A1)/365.25,1)*12)&" M"
Do not enter a date in mm/dd/yy format (as in 1/1/60) into the formula because that will be calculated as 1 divided by 1 divided by 60. To use the date in the formula without referencing a cell, use the DATE(year,month,day) function.
Additional query words: 1.0 1.00 1.03 1.04 1.06 1.5 1.50 2.20 3.0 4.00 age
Keywords :
Version :
Platform :
Issue type :
Last Reviewed: March 12, 1999