Tool_Add-ins_Analysis toolpak???
> How old is this person?
Something like 31.25 years using...
=YEARFRAC(A2,TRUNC(A1),1)
Note: YEARFRAC is another of those functions
courtesy of the fine people that brought you
the Analysis ToolPack. : )
I have rencently got a copy of the Village software1 excel sheet that comes free with excel 2000....
But, it has a password on the VBA side of it. Does any1 know what it is or how to remove it...?
Cheers
Tim
you can get a fairly good calculation of the age in years with:
=INT((NOW()- Date of Birth)/365.25)
Mark
I can help with #1 - This worked on Excel 97
Try: =INT((NOW() - DOB)/365.25)
Using the TODAY() function may ease up a little
on the granularity so you don't get a flag raised
at 11:00pm on the night before someone's birthday.
I replied too. But I see it nowhere!
No one mentioned DATEDIF, so I'll repeat my "lost" msg.
A fancy way would be:
=DATEDIF(A2,A1,"y")&" years, "&DATEDIF(A2,A1,"ym")&" months, "&DATEDIF(A2,A1,"md")&" days"
A shorter one with the same function:
=DATEDIF(A2,A1,"y")
Aladin
Try this link - it shouls answer your question.
http://www.cpearson.com/excel/datedif.htm