+ Reply to Thread
Results 1 to 117 of 117

Calculating Age

Hybrid View

  1. #1
    devinm21
    Guest

    Calculating Age

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


    Thanks!


  2. #2
    Chip Pearson
    Guest

    Re: Calculating Age

    You can use the DATEDIF function. E.g.,

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

    See www.cpearson.com/excel/datedif.htm for more information about
    DATEDIF.


    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com



    "devinm21" <devinm21@discussions.microsoft.com> wrote in message
    news:8D2BEAE4-3E8C-4631-AE2D-0B999CECD47A@microsoft.com...
    > If I have a person's birthday, how can I calculate their
    > current age based on
    > today's date?
    >
    >
    > Thanks!
    >




  3. #3
    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!
    >


  4. #4
    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)))



  5. #5
    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)))
    >
    >




  6. #6
    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)))
    > >
    > >

    >
    >
    >


  7. #7
    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)))
    > > >
    > > >

    > >
    > >
    > >




  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

  9. #9
    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!
    >


  10. #10
    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!
    >


  11. #11
    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)))



  12. #12
    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)))
    >
    >




  13. #13
    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)))
    >
    >




  14. #14
    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)))
    > >
    > >

    >
    >
    >


  15. #15
    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)))
    > >
    > >

    >
    >
    >


  16. #16
    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)))
    > > >
    > > >

    > >
    > >
    > >




  17. #17
    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)))
    > > >
    > > >

    > >
    > >
    > >




  18. #18
    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)))
    > > >
    > > >

    > >
    > >
    > >




  19. #19
    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)))
    > >
    > >

    >
    >
    >


  20. #20
    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

  21. #21
    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

  22. #22
    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)))
    >
    >




  23. #23
    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

  24. #24
    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)))



  25. #25
    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)))



  26. #26
    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!
    >


  27. #27
    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!
    >


  28. #28
    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!
    >


  29. #29
    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)))



  30. #30
    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)))
    >
    >




  31. #31
    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)))
    >
    >




  32. #32
    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)))
    > >
    > >

    >
    >
    >


  33. #33
    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)))
    > > >
    > > >

    > >
    > >
    > >




  34. #34
    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)))
    > > >
    > > >

    > >
    > >
    > >




  35. #35
    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)))
    > >
    > >

    >
    >
    >


  36. #36
    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

  37. #37
    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

  38. #38
    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)))



  39. #39
    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!
    >


  40. #40
    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!
    >


  41. #41
    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)))



  42. #42
    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)))



  43. #43
    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)))
    >
    >




  44. #44
    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)))
    >
    >




  45. #45
    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)))
    > >
    > >

    >
    >
    >


  46. #46
    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)))
    > > >
    > > >

    > >
    > >
    > >




  47. #47
    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)))
    > > >
    > > >

    > >
    > >
    > >




  48. #48
    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)))
    > > >
    > > >

    > >
    > >
    > >




  49. #49
    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)))
    > > >
    > > >

    > >
    > >
    > >




  50. #50
    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)))
    > >
    > >

    >
    >
    >


  51. #51
    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)))
    > >
    > >

    >
    >
    >


  52. #52
    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)))
    > >
    > >

    >
    >
    >


  53. #53
    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

  54. #54
    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

  55. #55
    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)))
    >
    >




  56. #56
    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

  57. #57
    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)))
    >
    >




  58. #58
    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

  59. #59
    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)))



  60. #60
    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)))



  61. #61
    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!
    >


  62. #62
    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!
    >


+ 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