Working with dates in formulas

  • Thread starter Thread starter Sharon L Duscher
  • Start date Start date
S

Sharon L Duscher

I need two different kinds of date calculations.
1. I need to be able to show what age someone is today.
Date of Birth is a field, but they want to show the
current age and I can't get it to work.
2. I have a date and I need to add 7 months to it and
have it come up automatically.
Thanks for your help.
 
Sharon,

In response to your first question...

If A1 held the birthdate
=DATEDIF(A1,TODAY(),"Y")

For more information on the DATEDIF function see
http://www.cpearson.com/excel/datedif.htm

In response to your second question...

If A2 held the date
=DATE(YEAR(C27), MONTH(C27)+7, DAY(C27))

Dan E
 
Back
Top