Calculate birth date from age

J

JP6262AMY

I periodically have a situation where I know the ages of a list of people and
need to convert the ages into birthdates.

i.e. Age 43 - instead of manually calculating that this persons birthday is
approximately 1/1/1964, how do I enter a formula to change the age into a
birthdate?

Any assistance anyone can provide will be greatly appreciated.
 
G

Gary''s Student

There are about 365 correct answers. If a person's age in in A1 and today is
her birthday, then:

=DATE(YEAR(TODAY())-A1,MONTH(TODAY()),DAY(TODAY()))

will give the date on which she was born.
 
T

Tyro

Dates are simply numbers. Excel's date range is Jan 1, 1900, day 1 through.
Dec 31, 9999, day 2,958,465. If the age is in A1 then you could use
=(TODAY()-A1*365.25) to get an approximation and format the answer as a
date. But be aware that you could be off by almost a whole year.

Tyro
 
B

Bill Sharpe

JP6262AMY said:
I periodically have a situation where I know the ages of a list of people and
need to convert the ages into birthdates.

i.e. Age 43 - instead of manually calculating that this persons birthday is
approximately 1/1/1964, how do I enter a formula to change the age into a
birthdate?

Any assistance anyone can provide will be greatly appreciated.
Your current approach works well for horses, but not people <vbg>
 
D

David Biddulph

Isn't the OP's suggestion a year wrong for horses? :)
Isn't a horse born in 2004 considered a 4-year old from 1/1/2008? [The
experts at Cheltenham today could tell us.]
 

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