Need to figure date of birth

wilkisa

Well-known Member
Joined
Apr 7, 2002
Messages
657
Office Version
  1. 365
  2. 2016
  3. 2013
Platform
  1. Windows
I have the date of death and the age at death in Years, Month, Days. What formula would I use to figure the date of birth?
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try:

=DATE(YEAR(TODAY())-B2,MONTH(TODAY())-C2,DAY(TODAY()-D2))

Where B2 has the years, C2 has the months, and D2 has the days
 
Upvote 0
I'm not sure I understand but maybe it would help if I gave you the info that I have. The date of death was Oct 7, 1849 and the person was 61 years, 11 months, and 22 days old. Does this formula still work?
 
Upvote 0
I'm having a hard time getting Excel 2007 to understand the year 1849 in my calculations. It clearly doesn't have a DateValue so any suggestions on what to use?

Thanks for any help!

Shirlene
 
Upvote 0
Thanks, Oaktree. That helps a lot!
 
Upvote 0
Okay, I put in the following formula:

=XDATE(YEAR(B14())-A17,MONTH(B14())-B17,DAY(B14()-C17))

where B14 contains 10/7/1849 and A17 through C17 contain 61, 11, 22. I am getting a #VALUE! result.

Any suggestions? I didn see any other XDATE functions that would be of any help but this looks like it should work. I think it's just me being dense.....
 
Upvote 0
Why do you have parentheses after B14?:eek:
 
Upvote 0
I said I was being dense...I just forgot to take them out after replacing TODAY with B14. Thanks for the smack in the head!!! However, here is my updated formula and I am still getting #VALUE!

=XDATE(YEAR(B14)-A17,MONTH(B14)-B17,DAY(B14)-C17)

I'm getting frustrated............So I'm going home for the day and I'll pick this up again tomorrow morning.

Thanks for all the help, so far
Shirlene
 
Upvote 0
As B14 isn't recognised as a date by Excel, YEAR, MONTH and DAY functions won't work, you need to use the XDATE versions, i.e.

=XDATE(xdateYEAR(B14)-A17,xdateMONTH(B14)-B17,xdateDAY(B14)-C17)
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,186
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top