How do I add decimal years to a date. I know that I have 9.79 years untill
full retirement. How do I add that to today's date to find out what my
retirement date is?
The problem with using decimal years is that both years and months have
different numbers of days. So it's going to depend on what sort of assumptions
you want to make.
You could assume, for example, that the average year has 365.25 days and use a
formula like:
=A1+365.25*B1
Where A1 is your date; and B1 is your decimal years.
You could assume the last month has 30 days and use the formula:
=DATE(YEAR(A1)+INT(B1),MONTH(A1)+MOD(
B1,1)*12,DAY(A1)+MOD(MOD(B1,1)*12,1)*30)
or you could assume an average month has 365/12 days and use:
=DATE(YEAR(A1)+INT(B1),MONTH(A1)+MOD(
B1,1)*12,DAY(A1)+MOD(MOD(B1,1)*12,1)*365/12)
There might be a one or two day difference between the two formulas.
Or you could find out how your company calculates it, and see if things are
close.
--ron