Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excell DOB convert to age

Status
Not open for further replies.

MIKERYAN

Programmer
Jul 13, 2000
9
US
First skills may be overstated Tech/user may be my speed.
In Excell is there a (cell) formula to convert date 00/00/000 to numerical age 00 years old
 
Hi Mikeryan

try this

cell A1 enter a birth date
cell B1 =today()
cell C1 +B1 - A1 (number format to give number of days)
cell D1 +C1/365 gives years

not precise, as there are leap years involved, but I imagine this may help with your query.

Regards


Pete Bloomfield
Down Under
 
Thanks repete. I also have found formula Rounddown(Now()-Dob)/365.25 will give whole numbers
 
yep, you could also use round() and roundup() as required. also check out ceiling() and floor() to see how these work.

Regards Pete Bloomfield
Down Under
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top