Age from birthday

  • Thread starter Thread starter Hildo
  • Start date Start date
H

Hildo

This shouyld be easy, but I can't seem to figure it out.

I have the birthday of a client and I need his age in
years.

Somebody has a formula?

TAI,
Hildo

PS: I tried to look in the past messages but got a lot
of 'message unvailable'.
 
You can use DATEDIF, eg:

=DATEDIF(A1,TODAY(),"y")

with DOB in A1.

Rgds,
Andy
 
Hi - Try the following function...

Function CalcAge(Start)
CalcAge = Int((DateDiff("m", Start, Now)) / 12)
End Function
 
datedif(a1,now(),"Y")
A1 would be the cell the persons birthday is in.
 
Hildo, here is some more info on datedif
http://www.cpearson.com/excel/datedif.htm#Age

--
Paul B
Always backup your data before trying something new
Using Excel 2000 & 97
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
 

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

Back
Top