Thread: Age
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Arvi Laanemets Arvi Laanemets is offline
external usenet poster
 
Posts: 510
Default Age

Hi

In general:
=DATEDIF(BirthDate,TODAY(),"Y") & " years " &
DATEDIF(BirthDate,TODAY(),"YM") & " months"

(you may make it more complex to deal differently for cases the number of
years/months is 0 or 1, but all basic you have here)


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"Jeff" wrote in message
...
I was trying to calculate the age of a group of lives.

I have the date of birth - I need the closest age not the "age last
birthday". So for example if someone is born on June 24, 1950 - then 56
years and 5 months have passed. Then they would be rounded down to 56
years
- since we round the 5 months.


Thanks for your help