How to calculate age from today's date?

M

Mom Types

Using =TODAY() in O1 cell, how do I calculate ages based on birthdates? Thank
you.
 
M

Mike

in any cell gives age so in this formula change a13 to your own cell
reference to your cell reference and you done.

=TEXT(IF(OR(MONTH(TODAY())>MONTH(A13),AND(MONTH(TODAY())=MONTH(A13),DAY(TODAY())>=DAY(A13))),(TODAY()-A13)/365.25,(TODAY()-A13)/365.25),"0")
 
M

Mike

Sorry here's a nicer one. Once again change A1 to your own cell reference

=DATEDIF(A1,TODAY(),"Y") & " Years, " & DATEDIF(A1,TODAY(),"YM") & " Months,
" & DATEDIF(A1,TODAY(),"MD") & " Days"
 
M

Mom Types

This one works the best for me; I have a list of clients/birthdates and this
formula worked the best in a Fill. Thanks for your help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top