formula telling me if person is 19 or older today

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need a formula to tell me if a person turned 19 today or is older than 19
based on dob. Excel 2000. thank you.
 
I need a formula to tell me if a person turned 19 today or is
older than 19 based on dob. Excel 2000. thank you.

Is this what you were after?

=IF(A1=DATE(YEAR(NOW())-19,MONTH(NOW()),DAY(NOW())),"Born
today",IF(A1<DATE(YEAR(NOW())-19,MONTH(NOW()),DAY(NOW())),"Older than
19","Too young"))

where I have assumed the date of birth is in A1.

Rick
 
Congratulations, you have come closer than anyone. Thank you. For some
reason, the first few months of the birthday year and a few days after the
19th birthday, compute incorrectly. This is the closest I have come, though.
 
Congratulations, you have come closer than anyone. Thank you. For some
reason, the first few months of the birthday year and a few days after the
19th birthday, compute incorrectly. This is the closest I have come,
though.

Can you post a couple of examples where this is the case so that I can track
down where the problem is?

Rick
 
verify the format of the date in A1 is as you expect it to be
=day(A1)
=Month(A1)
I have had data I though was MM/DD/YY which was really DD/MM/YY
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

#VALUE 2
Excel Subtracting multiple columns from another column 3
Entering Days360 in Table formula 2
Date Formatting 4
=COUNTIF formula 4
Nested if then else statement 3
=IF(A2="","",TEXT(A2,"dddd")) 3
Shift Schedule Formula 1

Back
Top