+ Reply to Thread
Results 1 to 6 of 6

Tracking if projects are late or on time

  1. #1
    Registered User
    Join Date
    10-17-2012
    Location
    Minnesota, USA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Tracking if projects are late or on time

    Hello:

    I have a spread sheet recording over 1000 projects' complete date in column A and the due date for those projects are in column B.

    I want users to be able to enter a starting date (cell C1) and an end date (cell C2), and return a number showing how many projects that were completed between those two dates are on time.

    Thanks!

  2. #2
    Valued Forum Contributor
    Join Date
    05-08-2012
    Location
    Georgia, USA
    MS-Off Ver
    Excel 2003, 2010
    Posts
    811

    Re: Tracking if projects are late or on time

    Where is your sample data?
    ===================
    You could add a helper column and compare the completed time and the due date
    ====================
    You also accomplish this with conditional formatting. The conditional formatting would "flag" those that did not meet your criteria
    Last edited by K m; 10-17-2012 at 03:52 PM.
    Click on star (*) below if this helps

  3. #3
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Tracking if projects are late or on time

    Try this formula:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    I have "comp date" in cell A1, and "due date" in B1, in case you were wondering why I started the ranges at A2 and B2.

    - Vince
    Last edited by Moo the Dog; 10-17-2012 at 04:07 PM.

  4. #4
    Registered User
    Join Date
    10-17-2012
    Location
    Minnesota, USA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Tracking if projects are late or on time

    It worked! Thanks! But could you please explain to me what's the "*" is for in the function? How does this array assigning work logically?

  5. #5
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Tracking if projects are late or on time

    Basically, when you use the SUMPRODUCT function, each calculation, for example (A2:A1000>$C$1), returns a TRUE/FALSE value. By multiplying the calculations it assigns each TRUE or FALSE a 1 or 0. Thus, for each calculation, it will only add 1 to the sum if ALL conditions are true [a typical 'AND' operation] (1*1*1) = 1. If any of the calculations result in a 0 (False), then it won't add anything to the sum (1*0*1) = 0.

    There are many more elegant explanations of SUMPRODUCT, but that is how I see it in my head.

    - Vince

  6. #6
    Registered User
    Join Date
    10-17-2012
    Location
    Minnesota, USA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Tracking if projects are late or on time

    Ahh I see.

    Now what if I want to find out the average of how many days are the late projects late by, how do I do that?

    Thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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