+ Reply to Thread
Results 1 to 117 of 117

Calculating Age

Hybrid View

Guest Calculating Age 01-15-2005, 01:06 PM
Guest Re: Calculating Age 01-15-2005, 01:06 PM
Guest RE: Calculating Age 06-08-2005, 07:05 PM
Guest Re: Calculating Age 06-09-2005, 06:05 AM
Guest Re: Calculating Age 06-09-2005, 07:05 AM
Guest Re: Calculating Age 06-16-2005, 07:05 PM
Guest Re: Calculating Age 06-17-2005, 02:05 AM
Guest Re: Calculating Age 06-17-2005, 11:05 AM
Guest Re: Calculating Age 06-09-2005, 07:05 AM
Guest RE: Calculating Age 09-05-2005, 10:05 PM
Guest RE: Calculating Age 09-06-2005, 04:05 AM
Guest Re: Calculating Age 09-06-2005, 04:05 AM
Guest Re: Calculating Age 09-05-2005, 10:05 PM
Guest Re: Calculating Age 09-06-2005, 04:05 AM
Guest Re: Calculating Age 09-05-2005, 10:05 PM
Guest Re: Calculating Age 09-06-2005, 04:05 AM
Guest Re: Calculating Age 09-05-2005, 10:05 PM
Guest Re: Calculating Age 09-05-2005, 11:05 PM
Guest Re: Calculating Age 09-05-2005, 11:05 PM
Guest Re: Calculating Age 09-05-2005, 10:05 PM
Guest Re: Calculating Age 09-06-2005, 04:05 AM
Guest Re: Calculating Age 09-05-2005, 11:05 PM
Guest Re: Calculating Age 09-05-2005, 11:05 PM
Guest Re: Calculating Age 09-05-2005, 10:05 PM
Guest Re: Calculating Age 09-05-2005, 11:05 PM
Guest RE: Calculating Age 09-05-2005, 11:05 PM
Guest RE: Calculating Age 09-06-2005, 12:05 AM
Guest RE: Calculating Age 09-06-2005, 06:05 AM
Guest Re: Calculating Age 09-06-2005, 06:05 AM
Guest Re: Calculating Age 09-06-2005, 12:05 AM
Guest Re: Calculating Age 09-06-2005, 06:05 AM
Guest Re: Calculating Age 09-06-2005, 06:05 AM
Guest Re: Calculating Age 09-06-2005, 12:05 AM
Guest Re: Calculating Age 09-06-2005, 12:05 AM
Guest Re: Calculating Age 09-06-2005, 12:05 AM
Guest Re: Calculating Age 09-06-2005, 06:05 AM
Guest Re: Calculating Age 09-06-2005, 12:05 AM
Guest RE: Calculating Age 09-06-2005, 01:05 AM
Guest RE: Calculating Age 09-06-2005, 07:05 AM
Guest Re: Calculating Age 09-06-2005, 01:05 AM
Guest Re: Calculating Age 09-06-2005, 07:05 AM
Guest Re: Calculating Age 09-06-2005, 01:05 AM
Guest Re: Calculating Age 09-06-2005, 07:05 AM
Guest Re: Calculating Age 09-06-2005, 07:05 AM
Guest Re: Calculating Age 09-06-2005, 01:05 AM
Guest Re: Calculating Age 09-06-2005, 02:05 AM
Guest Re: Calculating Age 09-06-2005, 03:05 AM
Guest Re: Calculating Age 09-06-2005, 01:05 AM
Guest Re: Calculating Age 09-06-2005, 02:05 AM
Guest Re: Calculating Age 09-06-2005, 03:05 AM
Guest Re: Calculating Age 09-06-2005, 01:05 AM
Guest Re: Calculating Age 09-06-2005, 07:05 AM
Guest Re: Calculating Age 09-06-2005, 02:05 AM
Guest Re: Calculating Age 09-06-2005, 02:05 AM
Guest Re: Calculating Age 09-06-2005, 03:05 AM
Guest Re: Calculating Age 09-06-2005, 03:05 AM
Guest Re: Calculating Age 09-06-2005, 02:05 AM
Guest Re: Calculating Age 09-06-2005, 03:05 AM
Guest RE: Calculating Age 09-06-2005, 02:05 AM
Guest RE: Calculating Age 09-06-2005, 03:05 AM
  1. #1
    ertug
    Guest

    RE: Calculating Age



    "devinm21" wrote:

    > If I have a person's birthday, how can I calculate their current age based on
    > today's date?
    >
    >
    > Thanks!
    >


  2. #2
    Vic Sowers
    Guest

    Re: Calculating Age


    "ertug" <ertug@discussions.microsoft.com> wrote in message
    news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    >
    >
    > "devinm21" wrote:
    >
    >> If I have a person's birthday, how can I calculate their current age
    >> based on
    >> today's date?
    >>
    >>
    >> Thanks!
    >>


    In whole years:

    =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),1,IF(DAY(NOW())<DAY(A1),1,0)))



  3. #3
    Mangesh Yadav
    Guest

    Re: Calculating Age

    There's been a big discussion on this already.

    http://excelforum.com/showthread.php...light=bluenose

    Mangesh



    "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com> wrote in message
    news:42a811d0$0$64586$a726171b@news.hal-pc.org...
    >
    > "ertug" <ertug@discussions.microsoft.com> wrote in message
    > news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    > >
    > >
    > > "devinm21" wrote:
    > >
    > >> If I have a person's birthday, how can I calculate their current age
    > >> based on
    > >> today's date?
    > >>
    > >>
    > >> Thanks!
    > >>

    >
    > In whole years:
    >
    >

    =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),
    1,IF(DAY(NOW())<DAY(A1),1,0)))
    >
    >




  4. #4
    junepbug
    Guest

    Re: Calculating Age

    My version of Excel does not have the "DATEIF" function. I was bale to cut
    and paste the formula in, and it works fine. However it dispays the results
    as Xyears, Xmonths, Xdays. I used to have it displayed as a four digit
    (##.##) number, which made finding the average age eay. Any suggestions on
    how to get that format back?

    "Mangesh Yadav" wrote:

    > There's been a big discussion on this already.
    >
    > http://excelforum.com/showthread.php...light=bluenose
    >
    > Mangesh
    >
    >
    >
    > "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com> wrote in message
    > news:42a811d0$0$64586$a726171b@news.hal-pc.org...
    > >
    > > "ertug" <ertug@discussions.microsoft.com> wrote in message
    > > news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    > > >
    > > >
    > > > "devinm21" wrote:
    > > >
    > > >> If I have a person's birthday, how can I calculate their current age
    > > >> based on
    > > >> today's date?
    > > >>
    > > >>
    > > >> Thanks!
    > > >>

    > >
    > > In whole years:
    > >
    > >

    > =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),
    > 1,IF(DAY(NOW())<DAY(A1),1,0)))
    > >
    > >

    >
    >
    >


  5. #5
    Mangesh Yadav
    Guest

    Re: Calculating Age

    Then you simply need to subtract the earlier date from the recent, and
    format as number.
    =A1-B1

    Mangesh



    "junepbug" <junepbug@discussions.microsoft.com> wrote in message
    news:D3AF380A-6B70-408D-8575-214DCE7FD2F7@microsoft.com...
    > My version of Excel does not have the "DATEIF" function. I was bale to cut
    > and paste the formula in, and it works fine. However it dispays the

    results
    > as Xyears, Xmonths, Xdays. I used to have it displayed as a four digit
    > (##.##) number, which made finding the average age eay. Any suggestions on
    > how to get that format back?
    >
    > "Mangesh Yadav" wrote:
    >
    > > There's been a big discussion on this already.
    > >
    > > http://excelforum.com/showthread.php...light=bluenose
    > >
    > > Mangesh
    > >
    > >
    > >
    > > "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com> wrote in message
    > > news:42a811d0$0$64586$a726171b@news.hal-pc.org...
    > > >
    > > > "ertug" <ertug@discussions.microsoft.com> wrote in message
    > > > news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    > > > >
    > > > >
    > > > > "devinm21" wrote:
    > > > >
    > > > >> If I have a person's birthday, how can I calculate their current

    age
    > > > >> based on
    > > > >> today's date?
    > > > >>
    > > > >>
    > > > >> Thanks!
    > > > >>
    > > >
    > > > In whole years:
    > > >
    > > >

    > >

    =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),
    > > 1,IF(DAY(NOW())<DAY(A1),1,0)))
    > > >
    > > >

    > >
    > >
    > >




  6. #6
    junepbug
    Guest

    Re: Calculating Age

    It comes up as 5545 instead of 58 yrs,7 mos. (58.58). I tried to change the
    formating but it's not coming up correctly. Is there anything else I can do?

    "Mangesh Yadav" wrote:

    > Then you simply need to subtract the earlier date from the recent, and
    > format as number.
    > =A1-B1
    >
    > Mangesh
    >
    >
    >
    > "junepbug" <junepbug@discussions.microsoft.com> wrote in message
    > news:D3AF380A-6B70-408D-8575-214DCE7FD2F7@microsoft.com...
    > > My version of Excel does not have the "DATEIF" function. I was bale to cut
    > > and paste the formula in, and it works fine. However it dispays the

    > results
    > > as Xyears, Xmonths, Xdays. I used to have it displayed as a four digit
    > > (##.##) number, which made finding the average age eay. Any suggestions on
    > > how to get that format back?
    > >
    > > "Mangesh Yadav" wrote:
    > >
    > > > There's been a big discussion on this already.
    > > >
    > > > http://excelforum.com/showthread.php...light=bluenose
    > > >
    > > > Mangesh
    > > >
    > > >
    > > >
    > > > "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com> wrote in message
    > > > news:42a811d0$0$64586$a726171b@news.hal-pc.org...
    > > > >
    > > > > "ertug" <ertug@discussions.microsoft.com> wrote in message
    > > > > news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    > > > > >
    > > > > >
    > > > > > "devinm21" wrote:
    > > > > >
    > > > > >> If I have a person's birthday, how can I calculate their current

    > age
    > > > > >> based on
    > > > > >> today's date?
    > > > > >>
    > > > > >>
    > > > > >> Thanks!
    > > > > >>
    > > > >
    > > > > In whole years:
    > > > >
    > > > >
    > > >

    > =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),
    > > > 1,IF(DAY(NOW())<DAY(A1),1,0)))
    > > > >
    > > > >
    > > >
    > > >
    > > >

    >
    >
    >


  7. #7
    Mangesh Yadav
    Guest

    Re: Calculating Age

    Could you post your data.
    And the formula you are using.

    Mangesh



    "junepbug" <junepbug@discussions.microsoft.com> wrote in message
    news:B9FC79F3-6B25-44EB-B33F-5AC3426F8399@microsoft.com...
    > It comes up as 5545 instead of 58 yrs,7 mos. (58.58). I tried to change

    the
    > formating but it's not coming up correctly. Is there anything else I can

    do?
    >
    > "Mangesh Yadav" wrote:
    >
    > > Then you simply need to subtract the earlier date from the recent, and
    > > format as number.
    > > =A1-B1
    > >
    > > Mangesh
    > >
    > >
    > >
    > > "junepbug" <junepbug@discussions.microsoft.com> wrote in message
    > > news:D3AF380A-6B70-408D-8575-214DCE7FD2F7@microsoft.com...
    > > > My version of Excel does not have the "DATEIF" function. I was bale to

    cut
    > > > and paste the formula in, and it works fine. However it dispays the

    > > results
    > > > as Xyears, Xmonths, Xdays. I used to have it displayed as a four digit
    > > > (##.##) number, which made finding the average age eay. Any

    suggestions on
    > > > how to get that format back?
    > > >
    > > > "Mangesh Yadav" wrote:
    > > >
    > > > > There's been a big discussion on this already.
    > > > >
    > > > > http://excelforum.com/showthread.php...light=bluenose
    > > > >
    > > > > Mangesh
    > > > >
    > > > >
    > > > >
    > > > > "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com> wrote in message
    > > > > news:42a811d0$0$64586$a726171b@news.hal-pc.org...
    > > > > >
    > > > > > "ertug" <ertug@discussions.microsoft.com> wrote in message
    > > > > > news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    > > > > > >
    > > > > > >
    > > > > > > "devinm21" wrote:
    > > > > > >
    > > > > > >> If I have a person's birthday, how can I calculate their

    current
    > > age
    > > > > > >> based on
    > > > > > >> today's date?
    > > > > > >>
    > > > > > >>
    > > > > > >> Thanks!
    > > > > > >>
    > > > > >
    > > > > > In whole years:
    > > > > >
    > > > > >
    > > > >

    > >

    =YEAR(NOW())-YEAR(A1)-IF(MONTH(NOW())>MONTH(A1),0,IF(MONTH(NOW())>MONTH(A1),
    > > > > 1,IF(DAY(NOW())<DAY(A1),1,0)))
    > > > > >
    > > > > >
    > > > >
    > > > >
    > > > >

    > >
    > >
    > >




  8. #8
    Ron Rosenfeld
    Guest

    Re: Calculating Age

    On Thu, 9 Jun 2005 04:54:09 -0500, "Vic Sowers" <Mail@Vic_NOSPAM_Sowers.com>
    wrote:

    >
    >"ertug" <ertug@discussions.microsoft.com> wrote in message
    >news:37A7EE25-5F76-477F-8273-5695FA05A076@microsoft.com...
    >>
    >>
    >> "devinm21" wrote:
    >>
    >>> If I have a person's birthday, how can I calculate their current age
    >>> based on
    >>> today's date?
    >>>
    >>>
    >>> Thanks!
    >>>

    >
    >In whole years:
    >


    Somewhat shorter formula:

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


    --ron

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1