View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier
 
Posts: n/a
Default Producing Age Based on Date of Birth

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


MPuser wrote:
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?