Date of Birth to Age

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?
 
2

2rrs

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.
 
M

MeAgain

Hi
Can you put also the Hours Minutes and secounds in this fomulas
ie 4/19/1960= 43Years, 4Months, 7Days, 5Hours, 23Minutes, 15Seconds.

Thanks
 
R

Rafael Ortiz

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
 

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