B
brenner
using todays date what formula do i use to calculate a person age using their
date of birth
date of birth
enter date of birth in a cell ( ex A1: 05/24/1980)
B1: =YEAR(TODAY())-YEAR(A1)
after that select cell B1 and go format cell - > Number - > General
pls do rate......
using todays date what formula do i use to calculate a person age using their
date of birth
The complete formula is
=DATEDIF(A1,TODAY(),"Y")&" years "&DATEDIF(A1,TODAY(),"YM")&" months
"&DATEDIF(A1,TODAY(),"MD")&" days"
You can trim the formula to suit your needs to give only x years or x years y
months or have the full formula give you x tears y months z days.
There is a minor error in leap years for people born on 28th February - the
formula assumes that the DOB is 1st March.
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.