Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
how we can calculate present age if date of birth is given say for eg: 21/2/1983 Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
G'day Harsh
Assume A1 = Birthdate = 06-Mar-1960 Format as Date B1 = Now() = 25-Jul-2008 Format as Date C1 = (B1-A1)/365 = 48yo Format as Number HTH Mark. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try
=DATEDIF(A1,TODAY(),"y") Where A1 is the date of birth Mike "harsh_njoy" wrote: Hi, how we can calculate present age if date of birth is given say for eg: 21/2/1983 Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That would be fine if all years were 365 days, Mark.
For a value of 30 Jul 1960 in A1, that returns 48 years and a bit besides. Try =DATEDIF(A1,B1,"y") or =DATEDIF(A1,TODAY(),"y") -- David Biddulph "NoodNutt" wrote in message ... G'day Harsh Assume A1 = Birthdate = 06-Mar-1960 Format as Date B1 = Now() = 25-Jul-2008 Format as Date C1 = (B1-A1)/365 = 48yo Format as Number HTH Mark. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming that A1 contains the birthday:
=DATEDIF(A1,NOW(),"y") For more information on DATEDIF have a look at your *very* old Excel documentation (yes, Excel once came with printed handbooks) or look hehttp://www.cpearson.com/excel/datedif.aspx Cheers, Joerg Lefeber "harsh_njoy" wrote in message ... Hi, how we can calculate present age if date of birth is given say for eg: 21/2/1983 Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Birth date from age | Excel Worksheet Functions | |||
calculating month of present date | Excel Discussion (Misc queries) | |||
formula to calculate age using birth date and current date | Excel Worksheet Functions | |||
calculating age by birth date using excel | Excel Worksheet Functions | |||
calculating the future value of a present value | Excel Worksheet Functions |