You are here:

Excel/Unique overlaping times

Advertisement


Question
Hi

I like to evaluate how many unique overlapping times i have in my table any second or minute.
Here is a extract of the table that would show 1 unique overlap out of 3 records:

ID   Start Time               EndTime
100  10/01/2008  4:29:00 p.m. 10/01/2008  4:31:05 p.m.
101  10/01/2008  4:30:00 p.m. 10/01/2008  4:35:00 p.m.
102  10/01/2008  4:36:14 p.m. 10/01/2008  4:38:03 p.m.

Any help is greatly appreciated
Andy

Answer
I am assuming that the data will be ordered by Start Time, so we can use formulas for the solution.  One way of finding the overlaps is with an additional column, with a formula like:
=IF(B3>0,C2>B3)
This should go in D2, and then drag the formula across the column.  To get the total figures, you can use a formula like:
=COUNTIF(D:D,TRUE)
And if you use an autofilter (menu Data->Filter->Autofilter) you can filter by TRUE values on that column to show the overlapping lines.

If you just want the number of overlaps, and you don't want to use an extra column, you can use an array formula like:
=SUM(--(C2:C99>B3:B100))
Enter it with Crtl+Shift+Enter.  The ranges must have the same number of elements, and they should reflect the number of existing rows (up to row 100 in this case).

Hope this helps,
Miguel
About Excel
This topic answers questions related to Microsoft Excel spreadsheet (or workbook) stand-alone or Mircrosoft Office Excel including Excel 2003, Excel 2007, Office 2000, and Office XP. You can get Excel help on Excel formulas(or functions), Excell macros, charting in Excel, advanced features, and the general use of Excel. This does not provide a general Excel tutorial nor the basics of using a spreadsheet. It provides specific answers to using Microsoft Excel only. If you do not see your Excel question answered in this area then please ask an Excel question here

All Answers

Answers by Expert:


Ask Experts

Volunteer


Miguel Zapico

Expertise

I will try to answer any question that I can replicate in my current environment (I use Excel 2003 with Windows XP). This may include formula related questions on other Excel versions. Due to time limitations, I am not writing custom code to answer questions any more. Sorry for the inconvenience.

Experience

I have worked with Excel for the past 12 years, in various environments.

Organizations
NYPC (New York PC users group)

Organizations
NYPC (New York PC users group)

Education/Credentials
MCSE in Windows NT

©2009 About.com, a part of The New York Times Company. All rights reserved.