+ Reply to Thread
Results 1 to 3 of 3

Number of overlapping calls

  1. #1
    Registered User
    Join Date
    10-29-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    1

    Question Number of overlapping calls

    I have an CSV output from my PBX system and I need to determine when calls are overlapping, how many are overlapping and foro how long. My output gives me the date, start time and duration. Any help would be greatl;y appreciated.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Number of overlapping calls

    Hi and welcome to the forum

    It would help if you could show us a workbook with dummy info, with your expected results

    To attach a file to your post,
    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,736

    Re: Number of overlapping calls

    One way of doing this would be to duplicate your data. For the first set of data you can use a helper column (D ?) to add the date and time together and another helper column (E ?) which you can fill with "b" (for begin). Then copy that block of data to below the first block, and in the first helper column add the date, the start time and the duration together (duration needs to be in Excel time format, so you may need to divide it by 24, then by 60, then by 60 again if it is in seconds). In the second helper column for this second block you can fill "f" (for finish). Then you can sort the combined data by the first helper column and then by the second helper column, and then you can introduce another column with a counter which increments or decrements depending on the type of record, something like (in F2):

    =IF(E2="b",F1+1,F1-1)

    (F1 should be empty or contain 0). Copy this down and it will give you the number of simultaneous calls at any point in time.

    Hope this helps.

    Pete

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to calculate a number of calls looged in a shift
    By mtshaba in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 01-08-2014, 10:06 AM
  2. Sum number of calls within a specific time frame
    By t83357 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-10-2013, 11:38 PM
  3. Calculate number of concurrent calls with these fields.
    By blongwell in forum Excel General
    Replies: 6
    Last Post: 12-13-2012, 06:30 AM
  4. [SOLVED] Average number of calls
    By sav1979 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-05-2012, 08:27 AM
  5. Number range and overlapping values
    By losty in forum Excel General
    Replies: 1
    Last Post: 04-21-2012, 12:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1