Producing Age Based on Date of Birth

M

MPuser

Given I have a cell with a person's date of birth (mm/dd/yyyy) can I
have another cell perform a function where it produces the person's
current age based on their DOB?
 
R

Roger Govier

Hi

With their DOB in A1
=DATEDIF(A1,TODAY(),"y") for years
=DATEDIF(A1,TODAY(),"ym") for additional months

="Age today is "&DATEDIF(A1,TODAY(),"y")&" years
"&=DATEDIF(A1,TODAY(),"ym")&" months"

Regards

Roger Govier
 

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

Top