how do i calculate age in term of years, months, days

B

Biff

Hi!

Try this:

A1 = birthdate
B1 = =NOW()

Formula for the age:

=DATEDIF(A1,B1,"y")&" years, "&DATEDIF(A1,B1,"ym")&" months,
"&DATEDIF(A1,B1,"md")&" days"

Will return something like:

29 years, 10 months, 11 days

Biff
 
G

Guest

Hi Biff
Thank u, it works
SHAN

Biff said:
Hi!

Try this:

A1 = birthdate
B1 = =NOW()

Formula for the age:

=DATEDIF(A1,B1,"y")&" years, "&DATEDIF(A1,B1,"ym")&" months,
"&DATEDIF(A1,B1,"md")&" days"

Will return something like:

29 years, 10 months, 11 days

Biff
 

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