How to Calculation Age and Birth Day in Excel
How to Calculation Age and Birth Day in Excel
You can calculate a person age based on their birthday and todays date.
The calculation uses the DATEDIF() function
=DATEDIF(C3,TODAY(),"y")
=DATEDIF(C3,TODAY(),"ym")
=DATEDIF(C3,TODAY(),"md")
You can put this all together in one calculation, which creates a text version.
="Age is "&DATEDIF(C3,TODAY(),"y")&" Years, "&DATEDIF(C3,TODAY(),"ym")&" Months and "&DATEDIF(C3,TODAY(),"md")&" Days"

Comments
Post a Comment