Excel Hints & Tips - Calculating Age

In: BlogDate: May 21, 2013By: Ian Balboa

You’d think that there would be an AGE function that worked out how many years since the anniversary by passing in a date. However, life is not that easy.

Hi, we are Happy

We are leading a movement to create happy, empowered and productive workplaces.

How can we help you and your people to find joy in at least 80% of your work?

More about Happy

Our trainer Ian Balboa explains step-by-step how to calculate how many years since an anniversary – both the easy way and the hard way.

The Easy Way

There is a function called DATEDIF that does something similar. The bad news is that for some reason Microsoft no longer supports this function in Excel. You can still use it, but you don’t get any help with it. For example, you have to remember the order of the arguments that go into the function, there’s no handy pop-up box to give you a hint. So, if you’re like me, you will probably end up typing it in multiple times with the arguments in different orders until it works!

Here’s the structure of the function:

=DATEDIF (Earliest Date, Later Date, Time Interval)

The Earliest Date will be the date you are working with, for example the Date of Birth. The Later Date will be today’s date, which you can get with the TODAY function. The Time Interval is how you want to express the difference between the two dates. If you are working out age, then you will need to specify the interval as years by using the code “y”. If your Date of Birth is in cell A1, then the completed formula will look like this:

=DATEDIF(A1,TODAY(),”y”)

The DATEDIF function automatically takes into account if the person’s birthday has already occurred this year. If not, it will subtract one from the resulting age.

The Hard Way

If you don’t want to use the unsupported DATEDIF function, then you can still work out an age from a Date of Birth, but it requires a little fancier Excel Kung Fu. There is a useful function called YEAR that will take a date and return the year bit of that date. For example, if you have the date 01/Dec/1970 in cell A1 then =YEAR(A1) will return 1970. (This date is very important as it’s my birthday!)

You can combine two YEAR functions to work out the difference in years between two dates:

=YEAR(TODAY())-YEAR(A1)

At the time of writing the date is April 2013, so the above formula would give 2013-1970, which equals 43. Sounds good so far, yes? Except, of course, I haven’t had my birthday yet, so I am actually only 42. (The extra year is increasingly important when you get to my age…)

So, to make this work, we need to somehow decide whether or not the anniversary of the date has passed. If it hasn’t, then we need to subtract one from the resulting age. This is the fancy bit!

In fact there are several ways to do this; what follows is, I think, a relatively straightforward method. We are going to work out the day of the year for each date. By this I mean: which day, out of 365, have we reached within the year in question? We can then compare the two numbers, and if the day-of-the-year number for our date of birth is less than the day-of-the-year number for today’s date, then we haven’t had our birthday yet.

Let’s break this down into parts. The first part will be to work out the day-of-the-year-number for our date of birth. We can do this by taking the date of birth and subtracting the 1st of January of that year from it. When you subtract one date from another, you get the difference between those dates in days. To create the 1st of January for year X we use the YEAR function, which we have already seen, and the DATE function. The DATE function creates a date from the three parts we supply: the year, month and day. If the original date is 01/Dec/1970, which is in cell A1, then the formula is:

=A1-DATE(YEAR(A1)),1,1)

This gives us the difference is days between the date in A1 and the 1st of January 1970. (Don’t worry; it takes leap years into account!)

If we do the same for today’s date, using the TODAY function, then we get something like this:

 

 

The next step is to compare these two values using an IF function and return either 1, if the birthday hasn’t happened, or 0, if it has.

=IF(A1-DATE(YEAR(A1),1,1)>TODAY()-DATE(YEAR(TODAY()),1,1),1,0)

If the day-of the-year-number for the date of birth is bigger than today’s day-of-the-year number, then this means we haven’t had our birthday yet.

The final step is to put all this together into one long formula. It looks pretty scary, but if you break it down into parts, then it’s not so bad.

=YEAR(TODAY())-YEAR(A1)-IF(A1-DATE(YEAR(A1),1,1)>TODAY()-DATE(YEAR(TODAY()),1,1),1,0)

Don’t forget to format the result of this formula as a number; otherwise you will get some strange results.

Related Blogs

Why not sign up to our newsletter?

Sign up to our monthly newsletter, full of tips, tricks and news to help you to be happier and more productive at work.

Sign up here

Improve your productivity in Excel with happy

Happy has high-quality, learner-focused Excel training courses for all skill levels, designed to improve your confidence and productivity. And our new online learning programme is just as interactive as our classroom sessions.

Here are our most popular options:

Our learners tell us that they save an average of 32 minutes a day with our Excel training courses. How much time could you save with us?

Why learn online with Happy?

  • Interactive and engaging - just like our classroom sessions
  • Bitesize or full-day sessions - fit around your schedule
  • Learn from home - all you need is a quiet place to call from and an internet connection
  • IT Helpline - 2 years of free support after your course
  • No quibble money-back guarantee

Ian Balboa

Ian was an IT trainer with Happy from 2007 to 2018, first as a member of staff and then as an associate. He delivered IT training in Microsoft Office (Word, Excel, PowerPoint, Access, Outlook) as well as VBA, SQL, HTML and Photoshop.

More by Ian

Testimonials from happy Customers