This tutorial explains the syntax and uses of the Excel YEAR function and provides formula examples to extract year from date, convert date to month and year, calculate age from the date of birth and determine leap years.
In a few recent posts, we have explored different ways to calculate dates and times in Excel and learned a variety of useful functions such as WEEKDAY, WEEKNUM, MONTH, and DAY. Today, we are going to focus on a bigger time unit and talk about calculating years in your Excel worksheets.
In this tutorial, you will learn:
YEAR function in Excel
The YEAR function in Excel returns a four-digit year corresponding to a given date as an integer from 1900 to 9999.
The syntax of the Excel YEAR function is as simple as it could possibly be:
Where serial_number is any valid date of the year you want to find.
Excel YEAR formula
To make a YEAR formula in Excel, you can supply the source date in several ways.
Using the DATE function
The most reliable way to supply a date in Excel is using the DATE function.
For example, the following formula returns the year for 28 April, 2015:
=YEAR(DATE(2015, 4, 28))
As a serial number representing the date
In the internal Excel system, dates are stored as serial numbers beginning with 1 January 1900, which is stored as number 1. For more information on how dates are stored in Excel, please see Excel date format.
The 28 day of April, 2015 is stored as 42122, so you can enter this number directly in the formula:
=YEAR(42122)
Though acceptable, this method is not recommended because date numbering may vary across different systems.
As a cell reference
Assuming you have a valid date in some cell, you can simply refer to that cell. For example:
=YEAR(A1)
As a result of some other formula
For example, you can use the TODAY() function to extract the year from the current date:
=YEAR(TODAY())
As text
In a simple case, the YEAR formula can even understand dates entered as text, like this:
=YEAR("28-Apr-2015")
When using this method, please double check that you enter the date in the format that Excel understands. Also, please remember that Microsoft does not guarantee correct results when a date is supplied as a text value.
The following screenshot demonstrates all of the above YEAR formulas in action, all returning 2015 as you might expect :)
How to convert date to year in Excel
When you work with date information in Excel, your worksheets usually display full dates, including month, day and year. However, for major milestones and important events such as product launches or asset acquisitions, you may want to view only the year without re-entering or modifying the original data. Below, you will find 3 quick ways to do this.
Example 1. Extract a year from date using the YEAR function
In fact, you already know how to use the YEAR function in Excel to convert a date to a year. The screenshot above demonstrates a bunch of formulas, and you can see a few more examples in the screenshot below. Notice that the YEAR function perfectly understands dates in all possible formats:
Example 2. Convert date to month and year in Excel
To convert a given date to year and month, you can use the TEXT function to extract each unit individually, and then concatenate those functions within one formula.
In the TEXT function, you can use different codes for months and years, such as:
- "mmm" - abbreviated months names, as Jan - Dec.
- "mmmm" - full month names, as January - December.
- "yy" - 2-digit years
- "yyyy" - 4-digit years
To make the output better readable, you can separate the codes with a comma, hyphen or any other character, like in the following Date to Month and Year formulas:
=TEXT(B2, "mmmm") & ", " & TEXT(B2, "yyyy")
Or
=TEXT(B2, "mmm") & "-" & TEXT(B2, "yy")
Where B2 is a cell containing a date.
Example 3. Display a date as a year
If it does not really matter how the dates are stored in your workbook, you can get Excel to show only the years without changing the original dates. In other words, you can have full dates stored in cells, but only the years displayed.
In this case, no formula is needed. You just open the Format Cells dialog by pressing Ctrl + 1, select the Custom category on the Number tab, and enter one of the below codes in the Type box:
- yy - to display 2-digit years, as 00 - 99.
- yyyy - to display 4-digit years, as 1900 - 9999.
Please remember that this method does not change the original date, it only changes the way the date is displayed in your worksheet. If you refer to such cells in your formulas, Microsoft Excel will perform date calculations rather than year calculations.
You can find more details about changing the date format in this tutorial: How to change date format in Excel.
How to calculate age from date of birth in Excel
There are several ways to calculate age form date of birth in Excel - using DATEDIF, YEARFRAC or INT function in combination with TODAY(). The TODAY function supplies the date to calculate age at, ensuring that your formula will always return the correct age.
Calculate age from date of birth in years
The traditional way to calculate a person's age in years is to subtract the birth date from the current date. This approach works fine in everyday life, but an analogous Excel age calculation formula is not perfectly true:
Where DOB is the date of birth.
The first part of the formula (TODAY()-B2) calculates the difference is days, and you divide it by 365 to get the number of years. In most cases, the result of this equation is a decimal number, and you have the INT function round it down to the nearest integer.
Assuming the date of birth is in cell B2, the complete formula goes as follows:
=INT((TODAY()-B2)/365)
As mentioned above, this age calculation formula is not always flawless, and here's why. Every 4th year is a leap year that contains 366 days, whereas the formula divides the number of days by 365. So, if someone was born on February 29 and today is February 28, this age formula will make a person one day older.
Dividing by 365.25 instead of 365 is not impeccable either, for example, when calculating the age of a child who hasn't yet lived through a leap year.
Given the above, you'd better save this way of calculating age for normal life, and use one of the following formulas to calculate age from date of birth in Excel.
The detailed explanation of the above formulas is provided in How to calculate age in Excel. And the following screenshot demonstrates a real-life age calculation formula in action:
=DATEDIF(B2, TODAY(), "y")
Calculating exact age from date of birth (in years, month and days)
To calculate an exact age in years, months and days, write three DATEDIF functions with the following units in the last argument:
- Y - to calculate the number of complete years.
- YM - to get the difference between the months, ignoring years.
- MD - to get the difference between the days, ignoring years and months.
And then, concatenate the 3 DATEDIF functions in a single formula, separate the numbers returned by each function with commas, and define what each number means.
Assuming the date of birth is in cell B2, the complete formula goes as follows:
=DATEDIF(B2,TODAY(),"Y") & " Years, " & DATEDIF(B2,TODAY(),"YM") & " Months, " & DATEDIF(B2,TODAY(),"MD") & " Days"
This age formula may come in very handy, say, for a doctor to display the exact age of patients, or for a personnel officer to know the exact age of all employees:
For more formula examples such as calculating age at a particular date or in a certain year, please check out the following tutorial: How to calculate age in Excel.
How to get the day number of the year (1-365)
This example demonstrates how you can get the number of a certain day in a year, between 1 and 365 (1-366 in leap years) with January 1 considered day 1.
For this, use the YEAR function together with DATE in this way:
=A2-DATE(YEAR(A2), 1, 0)
Where A2 is a cell containing the date.
And now, let's see what the formula actually does. The YEAR function retrieves the year of the date in cell A2, and passes it to the DATE(year, month, day) function, which returns the sequential number that represents a certain date.
So, in our formula, year
is extracted from the original date (A2), month
is 1 (January) and day
is 0. In fact, a zero day forces Excel to return December 31 of the previous year, because we want January 1 to be treated as the 1st day. And then, you subtract the serial number returned by the DATE formula from the original date (which is also stored as a serial number in Excel) and the difference is the day of the year you are looking for. For example, January 5, 2015 is stored as 42009 and December 31, 2014 is 42004, so 42009 - 42004 = 5.
If the concept of day 0 does not seem right to you, you can use the following formula instead:
=A2-DATE(YEAR(A2), 1, 1)+1
How to calculate the number of days remaining in the year
To compute the number of days remaining in the year, we are going to use the DATE and YEAR functions again. The formula is based on the same approach as Example 3 above, so you are unlikely to have any difficulties with understanding its logic:
=DATE(YEAR(A2),12,31)-A2
If you want to know how many days remain till the end of the year based on the current date, you use the Excel TODAY() function, as follows:
=DATE(2015, 12, 31)-TODAY()
Where 2015 is the current year.
Calculating leap years in Excel
As you know, nearly every 4th year has an extra day on February 29 and is called a leap year. In Microsoft Excel sheets, you can determine whether a certain date belongs to a leap year or a common year in a variety of ways. I'm going to demonstrate just a couple of formulas, which in my opinion are easiest to understand.
Formula 1. Check if February has 29 days
This is a very obvious test. Since February has 29 days in leap years, we calculate the number of days in month 2 of a given year and compare it with number 29. For example:
=DAY(DATE(2015,3,1)-1)=29
In this formula, the DATE(2015,3,1) function returns the 1st day of March in the year 2015, from which we subtract 1. The DAY function extracts the day number from this date, and we compare that number with 29. If the numbers match, the formula returns TRUE, FALSE otherwise.
If you already have a list of dates in your Excel worksheet and you want to know which ones are leap years, then incorporate the YEAR function in the formula to extract a year from a date:
=DAY(DATE(YEAR(A2),3,1)-1)=29
Where A2 is a cell containing the date.
The results returned by the formula are as follows:
Alternatively, you can use the EOMONTH function to return the last day in February, and compare that number with 29:
=DAY(EOMONTH(DATE(YEAR(A2),2,1),0))=29
To make the formula more user-friendly, employ the IF function and have it return, say, "Leap year" and "Common year" instead of TRUE and FALSE:
=IF(DAY(DATE(YEAR(A2),3,1)-1)=29, "Leap year", "Common year")
=IF(DAY(EOMONTH(DATE(YEAR(A2),2,1),0))=29, "Leap year", "Common year")
Formula 2. Check if the year has 366 days
This is another obvious test that hardly requires any explanation. We use one DATE function to return 1-Jan of the next year, another DATE function to get 1-Jan of this year, subtract the latter from the former and check if the difference equals to 366:
=DATE(2016,1,1) - DATE(2015,1,1)=366
To calculate a year based on a date entered in some cell, you use the Excel YEAR function exactly in the same way as we did in the previous example:
=DATE(YEAR(A2)+1,1,1) - DATE(YEAR(A2),1,1)=366
Where A2 is a cell containing the date.
And naturally, you can enclose the above DATE / YEAR formula in the IF function for it to return something more meaningful than the Boolean values of TRUE and FALSE:
=IF(DATE(YEAR(A2)+1,1,1) - DATE(YEAR(A2),1,1)=366, "Leap year", "Non-leap year")
As already mentioned, these are not the only possible ways to calculate leap years in Excel. If you are curious to know other solutions, you can check the method suggested by Microsoft. As usual, Microsoft guys are not looking for easy ways, are they?
Hopefully, this article has helped you figure out year calculations in Excel. I thank you for reading and look forward to seeing you next week.
151 comments
I want to know my age with month and days by using date of birth, How to and which formula can I use?
Is there a way to do calculate the average of a column that has the following information formatting: 2 Year(s), 6 Month(s), 19 Day(s) ... or is there a way to calculate that information into date format using date-to-age function.
Thanks so much.
Hi I have a list of excel sheets where patients ages are changed to Months (for e.g. 24, 36 mths etc). How do I calculate the average age of the list? How do I find the median and range of ages? This is a list of 375 patients. Please advise. Thank you.
Hello Julieanna,
To calculate the average age and the median of ages, you can use the AVERAGE and MEDIAN function, respectively. For example:
=AVERAGE(A2:A376)
=MEDIAN(A2:A376)
Hi Anurag,
For removing points i think you can use find & replace formula....
You can use key (Ctrl + F)
you have to do the following :-
1. Select Date
2. Use Ctrl + F
3. Find What : . (write dot in this tab)
4. Replace with : (leave this tab blank)
and then click "Replace" or for multiple selection you can use "Replace All"
how to remove point in between date of birth for eg-12.09.2011.
Hi Svetlana,
can you help please?
I need formula for giving Financial year to a specific date.
(eg. if the date is 31-03-2016 formula should say "2015-16" like that if date is 31-03-2015 answer should be "2014-15"
Hope you will answer my query.
Thanks in advance.
Hello Svetlana,
Can you please help me our with the solution formula?
Thanks in advance.
Hi Kunal,
Try the following formula, where A1 is the source date:
=YEAR(A1)-1&"-"&TEXT(A1, "yy")
Fantastic.
Thank you very much!
Thank you
in certificate it is written age as 19 years 01 month and 11 days as on 01 march 1983.
What will be the date of Birth
How to convert 2.3 in to 2 years 3 months
hi all
i want to check age by on adding year of birth
someone can help me send the formula on my email.
Figured it out- put in the desired date next to date of birth and took the absolute value:
=ABS((D2-C2)/365.25)
The .25 takes care of leap year (occurs every 4 years)
How can I convert date of birth to age if not using 'Today'? I want to find the age as of January 1 of a particular year, and when I add that value in my equation I get a circular reference warning and an incorrect answer.
=DATEDIF(D2,E2,"Y")
To calculate years of service, is it ok to use 12/31/2016 as the date instead of today's date? I'm using the formula: YEARFRAC(A1,B1,1). A1 being the 12/31/16 and b1 is the hire date.
Thanks,
Dear admin,
I would like to convert 24 years 6 month into 25 year by rounding it. What is the correct formula for this.I wl b glad if u replay me promptly. Thank you very much.
hi Need to set Remark on asset aging e.g.
if asset is <4.00 = < 4 Year
Hi ! This blog is very useful ! I use the DATEDIF function to calculate the age of children each month (in column the months for the next 10 years, and in raw the children). Now, I need to use a color for the cell where the child reaches "3 years 0 months 0 days", another color for the where he reaches 4, another color for the cell where he reaches 5... and so on.
I try to use the conditional function but it doesn't work. I wonder if it is because of the format (X years, X months, X days). The format is in "standard" and I changed to "number" but it doesn't work...
So 2 questions :
- how to highlight (or use a specific format) when I use the datedif function ?
- how to highlight the cell where a child reaches 3 yo but not the other cells where is over 3 ?
I hope you can help me...
Olivier
That gives a True or False, where I definitely need to see the age in years and months. I'll try something else, thanks for the help though.
Hi Becky,
Your initial request was "use conditional formatting to highlight where a student is under 18 years of age", and it it exactly what the formula does. To put it differently:
- If you enter the formula in a cell, it returns true / false.
- If you create a conditional formatting rule based on the above formula, it will highlight students under 18 years of age. If you need the detailed instructions on how to create a formula-based rule, please check out the following tutorial: Excel formulas for conditional formatting
To see the age in years and months, you can keep using your original formula.
Hi Ablebits, can you help please?
I have this formula working:
=DATEDIF(T78,I78,"Y")&"y"&DATEDIF(T78,I78,"YM") &"m"
where T78 is a date of birth and I78 is a specified date (start of course). It shows me the age of a student in years and months.
I'm trying to use conditional formatting to highlight where a student is under 18 years of age, but coming unstuck as it doesn't like the "y" and "m" text in the formula.
Many thanks for any advice.
Hi Becky,
"y" and "m" turn the output into a text string and that is why Excel cannot compare it with a number.
Try creating a conditional formatting rule with the following formula (where 78 is the topmost row with dates):
=DATEDIF($T78,$I78,"Y")<18
Would appreciate if you give provide a formula for below scenario. Thank you in advance.
Tenure shall be computed from the hiring date of the employee up to the effectivity date of separation
A fraction of six months shall be considered as one whole year and less than 6 months shall be considered in its exact proportion to one calendar year
Fifteen (15) to Thrity (30) days shall be considered as one month service while eight (8) to fourteen (14) days shall be condiered as half-month service.
Sample: Employee hiring date is July 25, 2000
a. Separated effective Jan 15, 2016, his tenure will be 16 years
b. Separated effective Jan 2, 2016, his tenure will be 15.46
Hello, Maeg,
Please see the formula below:
=DATEDIF(B3,C3,"y")+IF(DATEDIF(B3,C3,"ym")>=6,1+IF(DATEDIF(B3,C3,"md")>=15,1,IF(DATEDIF(B3,C3,"md")>=8,0.5,0)),IF(DATEDIF(B3,C3,"md")>=15,1,IF(DATEDIF(B3,C3,"md")>=8,0.5,0)))
Thanks a lot, very useful for me
Sir
I want to find out the age (years, months, days) on a particular date by using date of birth.
for example date of birth is 01/04/1984
I want to know my age on 25/08/2015 in years months and days by using MS Excel.
please help me.
Supposing that your date of birth is in A1 and the other date in B1, you can use the following formula:
=DATEDIF(A1, B1,"Y") & " Years, " & DATEDIF(A1, B1,"YM") & " Months, " & DATEDIF(A1, B1,"MD") & " Days"
This formula not work in my excel2013.
Name Date of Birth Today Age
Md.Biplab Hosen 02/11/2010 20/05/2016
Md. Azizul Hakim 12/03/2014 20/05/2016
Md. Badsha Miah 06/06/2014 20/05/2016
Md. Shariful Islam 07/06/2014 20/05/2016
Ripon Chandra Basak 11/06/2014 20/05/2016
So give me result with formula.
When I did this formula I get NAME?
I cannot get the bd and age to work