How to Compare Dates in Excel (Greater/Less Than, Mismatches)

One area that often troubles Microsoft Excel users is working with dates.

This is mostly because dates can be formatted in many different ways in Excel.

So while you may see two dates in Excel and think those are the same, there is a possibility that these might be different values in the back end (or vice versa, you may think two cells have different dates, and it may be the same).

In this tutorial, I will show you a couple of techniques that you can use to compare dates in Èxcel.

This could be useful when you need to check whether the dates in two cells are the same or not, or if one date is greater than or less than the other date.

So let’s get started!

How does Excel Stores Dates in the Cells?

Before I get into how you can compare two dates in Excel, let me first explain how date and time values are stored in Excel.

This is important, so if you don’t know this already, don’t skip this section (I will keep it short).

Dates are stored as whole numbers in the backend in Excel, and time values are stored as decimal values.

The dates in Excel start from 01 Jan 1900, which means that the value 1, when formatted as a date, would show you 01-01-1900 as the date in the cell in Excel.

Similarly, 44562, would represent 01 Jan 2022 (which means that 44562 days have passed between 01 Jan 1900 and 01 Jan 2022).

Similarly, time is stored as decimal values, where 0.5 would represent 12 hours and 0.75 would represent 18 hours.

So if I have the value 44562.5 in a cell, this would represent 01 Jan 2022 at 12:00 PM.

In a nutshell, dates and time values are stored as numbers in the backend, that are formatted to show as dates and time. This allows users to use these dates and times in calculations.

This is also the reason that not all date formats are acceptable formats in Excel. For example, if you enter Jan 01, 2022 in a cell in Excel, this would be treated as a text string and not as a valid date format.

Comparing Dates in Excel

Now that we have a better understanding of dates and time values are handled in the Excel backend, let’s see how to compare two dates in Excel.

Check Whether the Dates are the Same or Not

Below I have a dataset where I have two sets of dates in two columns, and I want to check whether these dates are the same or not.

Compare Dates dataset

This can be done using a simple equal-to-operator.

=A2=B2
Formula to compare dates in same row

The above formula would return TRUE if the compared dates are the same, and FALSE if they are not.

Since dates are stored as numeric values, when we use this formula, Excel simply checks whether the date numeric value is the same or not.

Comparing dates in Excel is just like comparing two numbers.

A few things important things you must know when comparing dates:

  • Dates can be in two different formats and yet be equal, as the backend numeric values of these dates are the same
  • Dates that look exactly the same can be different. In the above example, look at row #5 and #7. The date looks the same, but the result says FALSE. This happens when the date has a time part as well but it’s formatted to only show the date. In this case, the dates in column B also have some time added to it (but it doesn’t show in the cell).
  • In case you have a date entered as a string, you won’t be able to compare these (your dates needs to be in an acceptable date format)
Also read: How to Change Date Format In Excel?

Compare Dates Using IF Formula (Greater Less/Less Than)

While a head-on comparison with an equal-to operator works fine, your comparison could be more meaningful when you use an IF formula.

Below, I have dates in two different columns, and I want to know whether the dates in column B occurred before or after the dates in column A.

Dataset to compare dates with IF

This will help me identify whether the report was submitted before or after the specified due date.

Below is the formula that will do this:

 =IF(C2<=B2,"In Time","Delayed")
IF formula to compare dates

The above formula compares the two dates using the less than or equal to operator, and if the submission date is before the due date, it shows ‘In Time’, else it shows delayed.

You can do more with the IF formula (such as nesting multiple IF statements in the same formula).

Below is the formula that will show the text Delayed’ if the report is submitted 5 days after the due date, and it will show ‘Grace’ if the report is submitted within 5 days of the due date, and return ‘In-time’ if submitted before the due date (or the last day of submission)

=IF(C2-B2<=0,"In Time",IF(C2-B2<=5,"Grace","Delayed"))

The above formula uses two IF formulas (called nested IF formulas), as we need to check for 3 conditions.

Note that I have subtracted the dates from each other, which is possible as dates are stored as whole numbers in the backend. So when I subtract one date from another, it gives me the total number of days between these two dates.

Also read: Calculate Number Of Days Between Two Dates Excel

Compare Dates That Have Time Values

As I mentioned earlier, dates are stored as whole numbers, and time is stored as a decimal number in Excel.

Many times, people format their cells to only show the date and hide the time part.

Below is an example where I have the same values in both columns, but the dates in column B are formatted to only show the date part, so you don’t see the time part in it.

Compare Dates dataset

This can lead to confusion when comparing dates in Excel. For example, below I have a datset, and when I use the equal-to operator to compare the dates in the two columns, I get unexpected results.

Formula to compare dates in same row

In the above, I get a mismatch in cells C5 and C7, while it appears that the dates are the same.

In such a scenario, you can use the INT formula to make sure you’re comparing only the day part of the date and the time part is ignored.

Below is the formula that will give us the right result:

=INT(A2)=INT(B2)
Comparing Dates using the INT formula

The INT part of the formula makes sure that only the completed days are considered while comparing the dates, and the decimal part is ignored.

While this is an uncommon scenario, it is always a good idea to check the cell format when working with dates. I have often found that downloads from several databases that contain date and time values both have cells formatted to only show the date part.

Operators You Can Use When Comparing Dates in Excel

And finally, below are some operators you can use when comparing dates in Excel:

  • Equal to (=)
  • Greater Than (>)
  • Less Than (<)
  • Greater Than or Equal to (>=)
  • Less Than or Equal to (<=)
  • Not Equal to (<>)

In this tutorial, I covered how to compare dates in Excel using simple operators and the IF function. I also covered how to handle comparing dates when you have the time value as a part of it.

I hope you found this tutorial useful!

Other Excel tutorials you may also like:

Excel Ebook Subscribe

FREE EXCEL BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Sumit Bansal
Hello there! I'm Sumit Bansal, founder of trumpexcel.com and an Excel MVP. I started this website in 2013 with a simple goal: to share my love for Excel through easy to follow tips, tutorials and videos. I'm here to help you get the best out of MS Excel to save time and boost your productivity.

Leave a Comment

Free-Excel-Tips-EBook-Sumit-Bansal-1.png

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Free-Excel-Tips-EBook-Sumit-Bansal-1.png

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Free Excel Tips EBook Sumit Bansal

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster