Help need with formula

S

smith.james0

I need to work out how many years and months someone been alive. Can
anyone help?
 
O

olasa

This is one option:

A1: birthdate
B1: =DATEDIF(A1,TODAY(),"Y")&" years &
"&MOD(DATEDIF(A1,TODAY(),"M"),12)&" months"

Ola Sandström
 
D

Domenic

Also...

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

Hope this helps!
 
Top