This post will guide you how to find overlapping date ranges in excel, then highlight the overlapping dates. How do I highlight overlapping dates with conditional formatting function in excel.
Highlight overlapping dates
If you want to highlight overlapping dates, you need to find the overlapping date ranges firstly, so you need to create a formula based on SUMPRODUCT function, then type this formula into the conditional formatting format box. Just do the following steps:
#1 select the cells of range that you want to find the overlapping dates (it should contain start dates and end dates)

#2 go to HOME tab, click Conditional Formatting command under Styles group, and select New Rule… from the drop-down menu list. The New Formatting Rule dialog will appear.

#3 select Use a formula to determine which cells to format in the Select a Rule Type section, type the following formula into the Format values where this formula is true textbox.
=SUMPRODUCT(($B2<=$C$2:$C$4)*($C2>=$B$2:$B$4))>1

#4 click Format… button, the Format cells dialog will appear. And switch to Fill tab, pick a color to be used to highlight overlapping dates. Click OK.

#5 Click OK. You will see that all overlapping dates have been highlighted.

If you want to highlight duplicate values and overlapping dates in excel, you just need to repeat the above steps to achieve the result. And the only different is that you need to use the following formula in the step 3:
=SUMPRODUCT(($B2<=$C$2:$C$5)*($C2>=$B$2:$B$5)*($A2=$A$2:$A$5))>1


Related Functions
-
Excel SUMPRODUCT function
The Excel SUMPRODUCT function multiplies corresponding components in the given one or more arrays or ranges, and returns the sum of those products.The syntax of the SUMPRODUCT function is as below:= SUMPRODUCT (array1,[array2],…)…
Related Posts
Calculate Win Loss Tie
Suppose you got a task to calculate the win, loss, and tie totals; what would you do? If you are new to Ms Excel and don't have enough experience with it, then you might do this task manually but let ...
Count Cells that are Case Sensitive
If you are a frequent user of Microsoft Excel, you may have come across situations where you needed to add or count the cells that were case-sensitive. If you have done this task manually, I would like to point out ...
Check Dates in chronological order
Assume you have a date list that has different date formats, as seen in the accompanying picture. In this instance, Excel's Sort function will fail to sort them appropriately. However, you may convert all various date formats to a particular ...
Case Sensitive Lookup with SUMPRODUCT and EXACT
Today, we will show you how to use SUMPRODUCT and EXACT to perform a case sensitive exact match. In this article, we provide a simple example to calculate bonus for employees whose names are case-sensitive. If you meet similar scenarios ...
Average per Week by Formula in Excel
We usually apply AVERAGE function or relevant functions to return average directly in Excel worksheet. But in some situations, only applying average relevant functions cannot figure out our problem. Sometimes we can create a formula with functions and mathematical operation ...
How to Sum if Equal to X or Y in Excel
In daily work, if we want to sum numbers from a range, and only sum the numbers which being equal to X or Y in the range, we can create a formula with Excel build-in functions to get the result. ...
How To Sum the Largest N Values in Excel
Sometimes we may want to sum the largest N numbers or top N numbers in a range. In this article, we will show you the method of “SUM the Largest N Numbers” by a simple formula which consist of SUMPRODUCT ...
How to Sum for Cell Contains Formula Only in Excel
Sometimes values are created by formulas in cells. If we want to sum values which are created by formulas from a range, but some values which are hardcoded also list in the same range, how can we filter out matched ...
How to Sum the Smallest N Values in Excel
Sometimes we may want to sum the first smallest N numbers in a range in Excel. In this article, we will show you the method of “SUM the Smallest N Numbers” by a simple formula which consist of SUMPRODUCT and ...