vba to check if dates overlap

LFKim2018

Active Member
Joined
Mar 24, 2018
Messages
267
how do we check via VBA or formula if dates overlap each other?
date1: start date: 9-9-2018 end date: 10-8-2018
date2: start date: 9-22-2018 end date: 10-20-2018
date3: start date: 10-10-2018 end date: 11-15-2018
date2 overlaps with date1 while date3 overlaps with date2 etc
many many thanks
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Excel 2016 (Windows) 32 bit
A
B
C
1
startend
2
09-09-2018​
10-08-2018​
TRUE​
3
09-22-2018​
10-20-2018​
TRUE​
4
10-10-2018​
11-15-2018​
TRUE​

<tbody>
</tbody>
Sheet: Sheet5

<tbody>
</tbody>

Formula in C2
Excel 2016 (Windows) 32 bit
C
2
=SUMPRODUCT((A2<=B:B)*(B2>A:A))>1​

<tbody>
</tbody>
Sheet: Sheet5

<tbody>
</tbody>

Conditional formatting
If you prefer to use conditional formatting - here is a tutorial displaying that method



 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,808
Messages
6,121,684
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top