Calulating Age Formula

G

Guest

Need Formula for calulating age from birthdate from current date. I have used
=VALUE((2005)-YEAR(birthdate)), but this gives me the age of year as of end
of 2005. I need formula to calulate age as of today's date or by current
month. I want to show the age in the cell next to the birthdate without
using a date reference from another cell.

Thanks.
 
H

Harlan Grove

YUMBUG wrote...
Need Formula for calulating age from birthdate from current date. I have used
=VALUE((2005)-YEAR(birthdate)), but this gives me the age of year as of end
of 2005. I need formula to calulate age as of today's date or by current
month. I want to show the age in the cell next to the birthdate without
using a date reference from another cell.

=YEAR(TODAY()-birthdate)-YEAR(0)

would be one way using only documented function calls. Using the
usually undocumented DATEDIF requires something like

=DATEDIF(birthdate,TODAY(),"Y")
 
G

Guest

Thank you.

Harlan Grove said:
YUMBUG wrote...

=YEAR(TODAY()-birthdate)-YEAR(0)

would be one way using only documented function calls. Using the
usually undocumented DATEDIF requires something like

=DATEDIF(birthdate,TODAY(),"Y")
 

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