fbpx
Search
Close this search box.

14 ways to check if an year is leap year, using Excel [just for fun]

Share

Facebook
Twitter
LinkedIn

Today is February 29th, and that means, this year we have one more day to be awesome. So lets celebrate it in Excel style!

Lets learn 14 different ways to tell if an year is leap year, using Excel Formulas.

Why 14? because, we are awesome like that.

Why 14 methods to just find the year in cell D4 is leap year or not? Because, we all know that by learning different ways to solve a problem, we become smarter, more awesome and have more fun. So lets roll.

Check if an year is leap year or not using Excel

Before we start..,

Since all the 14 methods rely on certain calculations, I have created some names. See below:

Named Ranges and Formulas used to check for leap year

All the names are self-explanatory, except the febDays. So lets take a look at it.

febDays formula

For one of the methods, we need to have all the dates in February in a list. If we want the first of Feb as a date, we can use =DATE(year,2,1). But we want all dates in February. That means, we need to use a list (array) in third parameter of DATE like this:

=DATE(year,2,{1,2,3,4,….,28,29})

Instead of typing all the 28/29 numbers, we can use ROW formula to generate these, like:

=ROW($A$1:$A$29) would give me a numbers from 1 thru 29.

But the problem is in many years Feb has only 28 days, and for rest, it has 29 days. So we modify the second part of row formula and use the last DAY of the Feb, like this:

=ROW($A$1: INDEX($A$1:$A$29,DAY(EOMONTH(feb1st,0))))

To get the last day of a month, we use = DAY(EOMONTH(1st date, 0))

I think you can put the rest of pieces together to solve this puzzle.

Moving on,

#1 – The year has 366 days

This is the obvious one. We use =DATE(year+1,1,1)-jan1st=366 to check if there are 366 days between January 1st of next year and this year.

#2 – February 29th is not March 1st

Because in Excel all dates are numbers, when we use a formula like =DATE(2011,2,29), Excel gives us the date of March 1st, even though we wanted 29th Day of February in 2011.  So a simple leap year check is to see if February 29 is March 1st or not!

=DATE(year,2,29)<>mar1st

#3 – February has 29 days

This is another obvious test. In a leap year, February has 29 days. So=DAY(EOMONTH(feb1st,0))=29 will be true for leap years.

#4 – February 1st and March 1st are not on same day of week

In non leap years, Feb has 28 days (a multiple of 7), so both Feb and March start on same day of week. So, =WEEKDAY(feb1st)<>WEEKDAY(mar1st) will be TRUE for leap years.

#5 – Adding 365 to January 1st does not change year

Well, that is obvious too. =YEAR(jan1st)=YEAR(jan1st+365) is TRUE for leap years.

#6 – 30th Day of February is March 1st

If an year is leap year, 30th day of February [DATE(year,2,30)] is same as March 1st. So, =DATE(year,2,30)=mar1st is TRUE for leap years.

#7 – 0th Day of March is Feb 29th

In real world there is no zeroth day for any month. But in Excel, since all dates are numbers, 0th day refers to last day of previous month. So, =DAY(DATE(year,3,0))=29 will be TRUE in leap years.

#8 – April 1st and January 1st are on same day of week

In leap years, there are 91 days between January 1st and April 1st. And since 91 is a multiple of 7, both April 1st and January 1st start on same day of week. Hence, =WEEKDAY(jan1st)=WEEKDAY(apr1st) will be true for leap years.

#9 – Only 2 more months start on same day of week as January

In leap years, both April and July start on same day of week as January. (Where as in non-leap years, Only October starts on same day of week as Jan).

To test this, we will of course use the SUMPRODUCT. like this:

=SUMPRODUCT(–(WEEKDAY(DATE(year,ROW($A$2:$A$12),1))=WEEKDAY(jan1st)))=2

The portion WEEKDAY(DATE(year,ROW($A$2:$A$12),1)) gives all the first day of weeks from February to December. And then we just check how many of these are same as January 1st’s week day.

#10 – Next year’s February 1st and this year’s February 2nd are NOT  on same day of week

In non-leap years, there are 364 days between February 2nd and next year’s February 1st. Since 364 is a multiple of 7, both of these days are on same day of week. Which is not the case in leap years (as the difference becomes 365). So, =WEEKDAY(feb1st+1)<>WEEKDAY(EDATE(feb1st,12)) will be TRUE for leap years.

#11 – February 1st’s day of week occurs 5 times in that month

This a bit tricky to test, but then again we have SUMPRODUCT. So, =SUMPRODUCT(–(WEEKDAY(febDays)=WEEKDAY(feb1st)))=5 will be TRUE for leap years. The name febDays has all dates in February. I think the rest is easy to understand.

#12 – February starts and ends on same day of week

29 days means both 1st and 29 are on same weekday. So, =WEEKDAY(feb1st)=WEEKDAY(EOMONTH(feb1st,0)) will be true for leap years.

#13 – Spreadsheet day (October 17) and February 1st are on same day of week

Debra, who is a well known Excel blogger & author started the whole spreadsheet day thing. She says, we should celebrate October 17 as spreadsheet day. I love that idea, mainly because, it is just 3 days before my birthday and I like celebrations. And I also like Excel 🙂 So blame her if you do not like this way of testing for leap years.

In leap years, there are 259 days between February 1st and October 17. And since 259 is a multiple of 7 (and 37), we know that they are both on same day of week. So, =WEEKDAY(feb1st)=WEEKDAY(DATE(year,10,17)) is true for leap years.

#14 – Finally, the year is divisible by 4 and if it is divisible by 100, then also by 400

Finally, we are going to test the whole “an year is leap year if it is divisible by 4 and if it is divisible by 100, then it is also divisible by 400” thing. This is a slightly tricky one to test. The formula, =((MOD(year,4)=0)*((MOD(year,100)<>0)+(MOD(year,400)=0))=1) will be TRUE for leap years and false for non-leap years.

Download Leap Year Test Workbook

Click here to download the workbook with all these 14 examples. Play with the formulas, named ranges to understand these techniques.

How do you check it is a leap year?

If you are working and you get paid on first day of a month, then one clear way of knowing leap year is that you get your salary one day later. Other than this, what method would you use to find if an year is leap year. Go ahead and be creative. Share your ideas and formulas using comments. Next leap day is 4 years away. Go

Want to learn how to Dates & Times in Excel – Read these:

If you deal with data that has a lot of date / time stuff, then understanding various Excel features in this area is a must. Read below pages to learn more.

Want to master Date & Other Excel Formulas?

If you want to learn how various formulas in this post work and know more about everyday Excel formulas, please consider joining my Excel Formula crash course. It has detailed video tutorials on more than 40 everyday Excel formulas and teaches you all the powerful techniques to become a formula ninja.

Click here to join our Excel Formula Crash Course.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Excel School made me great at work.
5/5

– Brenda

Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

letter grades from test scores in Excel

How to convert test scores to letter grades in Excel?

We can use Excel’s LOOKUP function to quickly convert exam or test scores to letter grades like A+ or F. In this article, let me explain the process and necessary formulas. I will also share a technique to calculate letter grades from test scores using percentiles.

30 Responses to “14 ways to check if an year is leap year, using Excel [just for fun]”

  1. Sriram says:

    Is there a limit on the years? 1900 does not work. Pls let me know if I have missed anything.

    Thanks!

    • Chandoo says:

      @Sriram... Excel date system starts with Jan 1st 1900. So any dates prior to that are unknown to Excel. In my example workbook, the #14 test uses year number to determine if the year is leap and this works. All other methods give wrong answers.

      • Ignacio says:

        Sriram Una forma sencilla de saber si un año es bisiesto es dividir el año entre 4 y si el resultado es un número entero, entonces el año es bisiesto ej.: 1900/4=475; en cambio si la divisón tubiera residuo o diera un número con decimales no sería bisiesto Ej.: 1925/4=481.25.

        [Google Translate] Sriram An easy way to know if a year is a leap year is to divide the year between 4 and if the result is an integer, then the year is a leap year eg .: 1900/4 = 475; however if the divison tubiera residue or a number with decimals would not be leap Ex .: 1925/4 = 481.25.

  2. Gregor Erbach says:

    #15 "29/2/YYYY" is a number: =ISNUMBER(DATEVALUE("29/2/"&year))

  3. René says:

    I have been checking on Month, something like this:
    A1 = year (like 2011)
    =IF(MONTH(DATE(A1,1,1)+59)=2,"FEB","MARCH")

  4. modeste says:

    Hi chandoo !!
    if the 60th day of the year is on February
    then it's leap year...
    =MONTH(DATE(year,1,60)=2

    cheers

  5. Pedro Wave says:

    Two days between February 28th and March 1st:
    =DATE(year,2,28)+2=mar1st
    Days between March 1st and February 1st are not divisible by 7:
    =MOD(mar1st-feb1st,7)=1

  6. Pedro Wave says:

    The GDP is higher in 366 days (one extra day to make money):
    =ROUND((DOLLAR(("4/"&year)/7)-DOLLAR(("4/"&year-1)/7))*7,0)=366

  7. Pedro Wave says:

    Annual inflation helps to calculate leap years:
    =ROUND(DOLLAR("4/"&year)-DOLLAR("4/"&year-1),0)=366

  8. Pedro Wave says:

    Last formula with code tag:
    =ROUND(DOLLAR("4/"&year)-DOLLAR("4/"&year-1),0)=366

  9. Chandoo says:

    @Pedro, Rene & modeste: good ones...

  10. ChrisL says:

    I use a variation on #14: =OR(MOD(YEAR($A$1),4)=0,MOD(YEAR($A$1),400)=0) - it seems to work. Excel thinks 1900 is a leap year; it is not, because it doesn't divide exactly by 400.

    BTW, 17 October is an excellent choice for Spreadsheet Day - it's my birthday 🙂

  11. Pedro Wave says:

    Is February 29th a day:
    =NOT(ISERROR(DATEVALUE("2/29/"&year)))

  12. Similar to Pedro's formula but with one less function call...

    =NOT(ISERR(1*("29-Feb-"&year)))

  13. Actually, in looking back at Gregor's formula, here it is with one less function call...

    =ISNUMBER(1*("29-Feb-"&year))

  14. Michelle says:

    Anyone have a formula to determine how many leap days within a range?
    ie: A1= 14 Jan 1901 start
    A2= 31 Dec 2012 cease
    Z1= 29 Feb 2012
    Z2= 29 Feb 2008
    etc to 29 Feb 1904 requires 28 cells and 1 sum
    So far I am using =IF(AND(A1=Z1),1,)
    =IF(AND(A1=Z2),1,)
    etc to 29 Feb 1904
    and then sum of results.
    There must be a more elegant solution.

    • Chandoo says:

      @Michelle... Welcome to chandoo.org. Interesting question.

      Assuming starting date is A1 & End date is in A2:

      you can use =date(year(A2),12,32)-date(year(A1),1,1)-((year(A2)-year(A1))*365) to get the number of leap years in between the 2 years in A1 & A2.

      This formula counts the number of days between first of Jan of start year & 31st of December of end year and subtracts 365*number of years in between.

  15. Josue says:

    Hi all, this is my first time posting, 

    Thanks for this formula is has taken me closer to get what I want but I'm still having a problem, I need to calculate, to give an example, the years of service of a person in a company, but according to policy standards we use all years must be calculated with 365 days.

    I'm using a simple formula subtracting a start date and an end date to get the amount of days, and with the formula above calculating the amount of leap days in the interval and subtracting them to the amount of days of the 2 original dates.

    Now this works well for a person who started working during a leap year before feb 29 and ended working on a leap year after feb 29. Or that started of ended working on a normal year.

    Any ideas on how to modify the formula for such a case, as an example some who started working on april 1st, 2004 and finished working on jan 31st, 2012

    • Michelle says:

      I did the same calc for pensionable service / severance pay for a govt dept.
      Try this:
      A1  start date
      A2  cease date (dates are inclusive)
      A3  years=DATEDIF(A1,A5,"Y")
      A4  days=DATEDIF(A5,A2+1,"D")
      A5  first day of final year=IF(A2-A1<365,A1, IF(DATE(YEAR(A2),MONTH(A1),DAY(A1))>A2+1,DATE(YEAR(A2)-1,MONTH(A1),DAY(A1)), DATE(YEAR(A2),MONTH(A1),DAY(A1))))
      A6 YEARS=IF(A4=366,A3+1,A3)
      A7 DAYS=IF(A4=366,0,A4)

      Basically count full years regardless of if they are leap or not and then count the actual days from the anniversary date to the realease date. Had 100% success with this so far.

  16. Hans.KK says:

    One more.
    VBA function IsDate("2/29/" & TestYear)

  17. […] To know if the present year is a leap year or not, see this. […]

  18. Geo says:

    Misplaced comma in # 14.

    #14 – Finally, the year is divisible by 4 and if it is divisible by 100, then also by 400.

    I would suggest rewording it to....
    if it is divisible by 400, or if it is divisible by 4 not not by 100.

  19. Daleen says:

    I need to calculate leap years between the year 444B.C. and 32N.C., can I do it on Excel?

  20. JeteMc says:

    Thanks for the great lesson!

Leave a Reply