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
 
Top