How can I create a field indicating a persons age by using bd inf

T

Tim

How can I create an age field in excel using birthday info and possibly the
"today' function. I would not care if the answer is decimal or days as long
as it makes sense. Thanks in advance. Tim
 
G

Gord Dibben

Tim

The undocumented DATEDIF Function.........

Assuming birthdate in A6

=DATEDIF(A6,TODAY(),"y") & " years, " & DATEDIF(A6,TODAY(),"ym") & " months,
"& DATEDIF(A6,TODAY(),"md") & " days,"

OR is birthdate in A6 and later date in A7

=DATEDIF(A6,A7,"y") & " years, " & DATEDIF(A6,A7,"ym") & " months, "&
DATEDIF(A6,A7,"md") & " days,"


Gord Dibben Excel MVP
 
Top