Robert loves to work on genealogy. Sometimes when he finds an older cemetery, instead of the birth and death dates being visible on a tombstone, just one date is visible and an age. For example, "born: Jan 18, 1801, died 81 yrs, 11 mths, 17 days" or "age: 93 yrs, 8 mths, 22 days, died March 18, 1901." Robert is wondering if there is any way to calculate the missing date to the day.
There is a way to do this, but it doesn't involve the use of regular worksheet functions. While Excel includes a rich assortment of worksheet functions that allow you to manipulate dates, the "basis date" for Excel is January 1, 1900; this is the date from which all dates are calculated. (You can change the basis date, but only by four years, to 1904. This capability is provided for compatibility with Excel on the Mac.) This means that older dates—such as those you would find in the cemetery for genealogy purposes—can't be directly calculated in Excel.
Fortunately, VBA doesn't have this limitation. This means that you can easily create a user-defined function (a macro) that will do the math for you. Start by placing the starting date (either birth or death date) in cell B1. Then, in cells B2:B4 enter the number of years, months, and days by which you want to adjust the starting date. Thus, if B1 contains a birth date, then cells B2:B4 should be positive (you want to add them to the starting date). If B1 contains a death date, then B2:B4 should be negative (you want to subtract them from the starting date).
Then, create this macro:
Function FindDate(Start As Date, iYrs As Integer, _ iMths As Integer, iDays As Integer) Application.Volatile Dim D As Date D = DateAdd("yyyy", iYrs, Start) D = DateAdd("m", iMths, D) D = DateAdd("d", iDays, D) FindDate = Format(D, "m/d/yyyy") End Function
In whatever cell you want to display the calculated date you can enter the following formula:
=FindDate(B1,B2,B3,B4)
The result of the function is a formatted date that represents the start date adjusted by the years, months, and days you specify. So if cell B1 contains 1/18/1801, cell B2 contains 81, cell B3 contains 11, and cell B4 contains 17, then the function will return 1/4/1883. Similarly, if cell B1 contains 3/18/1901, cell B2 contains -93, cell B3 contains -8, and cell B4 contains -22, then the result returned will be 6/26/1807.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12277) applies to Microsoft Excel 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Excel here: Tombstone Date Math.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Dates can be entered into a worksheet in any number of unique or novel ways. Working with those dates can be a challenge, ...
Discover MoreExcel is brilliant at handling dates--as long as they aren't dates earlier than the base date used by the program. If you ...
Discover MoreWant to know which day of the month is the first business day? The easiest way to determine the date is to use the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-11-15 21:28:31
Michael
If you really want to complicate your calculations keep in mind that in 1752 the American Colonies switched from the Julian Calendar to the Gregorian Calendar which required an 11-day elimination in the date. Therefore, Wednesday, September 2, 1752 was immediately followed by Thursday, September 14, 1752.
credit to RootsWeb, funded and supported by Ancestry.com
2017-06-24 23:57:14
Clive
Your readers need to be careful if they are working with dates either side of February 1900. We all know that centuries (1800, 1900 etc) are not leap years. But Excel for Windows shows 29 days in Feb 1900. So 2 months after the Microsoft date system began it is wrong!
I assume that is why Apple chose to start in 1904 and bypass this problem.
2017-05-20 10:10:50
Brian Lair
Great tip! Very useful for us amateur genealogists. Thanks!
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments