+ Reply to Thread
Results 1 to 3 of 3

Counting with multiple criteria

  1. #1
    Registered User
    Join Date
    07-22-2010
    Location
    Florida, USA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Counting with multiple criteria

    I am trying to count values in one column if there is a value in the same row in another column. Complicating things, the count is in a separate worksheet in the same workbook. Sorry in advance if this explanation is confusing, the tables themselves contain some sensitive data that I can't publish, so I have to try to be careful about what I disclose.

    I have a spreadsheet that consists of a report worksheet and numerous other worksheets (all based on a common template but containing different data) that feed the report.

    The report is a summary of data from a number of other worksheets (all in the same file). Each row in the report corresponds to a different worksheet. The first column of the report contains the names of all the tabs, and I'm using INDIRECT to key the formulas in all the other columns, which basically just tabulate some counts, like so:

    Please Login or Register  to view this content.
    In this example, B4 is the first cell of the first row in the formatted table, which contains the name of the first data worksheet, and the range T9:T500 contains a list of dates corresponding to when the person indicated in a different column in that row performed a particular task. The result (which works fine) is a count of all the cells that contain a date, indicating that the task is complete (as opposed to an empty cell, which is not counted, and means that the task is not complete). From this I can determine how many lines (tasks) are complete.

    The last feature of the report I would like to incorporate correlates the value in one column (a department name) with the date previously mentioned. In plain English, the correlation means to me that, if there's a date in the last column, a person completed that task on behalf of the department. Put another way, there are half a dozen or so departments, and I'm trying to get a count, by department, of tasks that have been completed. I can already count the breakdown of tasks by department, but I need to now figure out by department how many are complete (and by inference, how many are incomplete).

    So if I have the following sample data, how would I go about creating a formula that increments the count based on these criteria:
    1. If the value in column N is "ABC" then...
    2. If the value in column T of the same row is not empty, increment the count.

    Column N:
    N1 Human Resources
    N2 Human Resources
    N3 Tech Support
    N4 Human Resources
    N5 Tech Support
    N6 Customer Billing

    Column T:
    T1 -empty-
    T2 5/17/2010
    T3 -empty-
    T4 5/20/2010
    T5 -empty-
    T6 6/29/2010

    So, for instance, I need to be able to specify "Human Resources" as the match, and I would expect it to return a count of "2" since there are two entries in Column T that are not empty that correspond to "Human Resources" in Column N.

    If someone is able to help me figure out how to just do the counting, I should be able to work backwards to incorporate the worksheet references using INDIRECT and all that stuff. I've tried using combinations of COUNT, IF, COUNTIF and VLOOKUP but all I can ever get it to do is evaluate to 1 or 0, not a count.

    There may be an easier way to do this with pivot tables, but I haven't been able to figure out how to get that working correctly either.

    Thanks in advance for any help.

    Tim
    Last edited by NBVC; 07-22-2010 at 09:30 PM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Counting with multiple criteria

    Try maybe:

    =IF(B4="","",SUMPRODUCT(--(INDIRECT("'"&$B4&"'!$N9:$N500")="Human Resources"),--(INDIRECT("'"&$B4&"'!$T9:$T500")<>"")))
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    07-22-2010
    Location
    Florida, USA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Counting with multiple criteria

    Brilliant! It works!

    Thanks so much. Saved me probably days of beating my head against it.

+ 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