Answer is being returned as a date, even if i put =int( in front of this. Any obvious reasons why?
=YEAR(TODAY()-YEAR(J2))
where J2 is 4/10/1939 and the answer given is 06/28/05. Why is this not simply outputting the person’s age?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
try
=INT((TODAY()-J2)/365.25)as your formula to return the age in yearsUsing
=year(today()-J2)would return the age plus the century (1900) so you could just append-1900from it, but the above solution works more simply