G Guest Mar 21, 2005 #1 If I have the age of a person in one cell how do i get their date of birth in the next cell? Is there a formula?
If I have the age of a person in one cell how do i get their date of birth in the next cell? Is there a formula?
T Trevor Shuttleworth Mar 21, 2005 #2 Assuming you know their birthday this year (in cell A1) and their age this year (in cell B1), one way is: =IF(A1>=TODAY(),DATE(YEAR(A1)-B1,MONTH(A1),DAY(A1)),DATE(YEAR(A1)-B1-1,MONTH(A1),DAY(A1))) Regards Trevor
Assuming you know their birthday this year (in cell A1) and their age this year (in cell B1), one way is: =IF(A1>=TODAY(),DATE(YEAR(A1)-B1,MONTH(A1),DAY(A1)),DATE(YEAR(A1)-B1-1,MONTH(A1),DAY(A1))) Regards Trevor