Date of Birth to Age

  • Thread starter Thread starter Nick P
  • Start date Start date
N

Nick P

Say I have a list of birthdates (ex: 4/19/1960) and want to put the age in a
column next to it.

What is the formula?
 
With dob in D3;
=DATEDIF(D3,NOW(),"y")&" years, "&DATEDIF(D3,NOW(),"ym")&" months,
"&DATEDIF(D3,NOW(),"md")&" days"
4/19/1960= 43y, 4m, 7d.
 
Hi
Can you put also the Hours Minutes and secounds in this fomulas
ie 4/19/1960= 43Years, 4Months, 7Days, 5Hours, 23Minutes, 15Seconds.

Thanks
 
In its simplest form:

=(TODAY()-A1)/365

Assumes your date is in cell A1. Make sure you format this cell to
Number with the desired decimal places AFTER you put the formula into
it. Then copy down to other cells as needed....


MRO
 
Back
Top