+ Reply to Thread
Results 1 to 2 of 2

Sum(countifs) Not picking up everything

  1. #1
    Registered User
    Join Date
    10-10-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    65

    Sum(countifs) Not picking up everything

    HI All

    Im using the Sum(CountiFs) formula with multiple arrays, it has worked fine on 80% of the tables, hoever when I use 3 or more arrays it decides not to pick up everything.

    The Data Dashboard has the grades,
    Column AV has the grades the students have achieved,
    column W has the grades that they need to achieve.
    The class can be found in Column E

    On the AR8 sheet im trying to populate the table using the above 3 columns, but it does not count everything despite me including it in the criteria

    E.G the formula in the matrix should show that there are 12 students who are achieving a U when they are targeted at a C, but the table only counts 8...

    =SUM(COUNTIFS('Y11 Data Dashboard'!$E$3:$E$3000,{"11sC3","11sC4","11sC5","11sC6"},'Y11 Data Dashboard'!$AV$3:$AV$3000,{"U-";"U";"U+"},'Y11 Data Dashboard'!$W$3:$W$3000,{"C-";"C";"C+"}))"

    Please help!


    Number of students Working at Grade
    U G F E D C B A A*
    U 0 0 0 0 0 0 0 0 0
    G 0 0 0 0 0 0 0 0 0
    F 1 0 0 0 0 0 0 0 0
    E 0 4 3 2 1 0 0 0 0
    D 3 5 9 5 1 1 0 0 0
    C 8 4 6 8 4 1 0 0 0
    B 0 0 0 2 0 0 0 0 0
    A 0 0 0 0 0 0 0 0 0
    A* 0 0 0 0 0 0 0 0 0
    Attached Files Attached Files

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Sum(countifs) Not picking up everything

    I didn't download your file.

    That particular syntax will only work with 2 array constants. You have 3.

    Use SUMPRODUCT instead. Also, it'd be better if you use cells to hold the criteria.

    A1:A4 = 11sC3, 11sC4, 11sC5, 11sC6
    B1:B3 = U-, U, U+
    C1:C3 = C-, C, C+

    Then the formula would be:

    =SUMPRODUCT(--ISNUMBER(MATCH('Y11 Data Dashboard'!$E$3:$E$3000,A1:A4,0)),--ISNUMBER(MATCH('Y11 Data Dashboard'!$AV$3:$AV$3000,B1:B3,0)),--ISNUMBER(MATCH('Y11 Data Dashboard'!$W$3:$W$3000,C1:C3,0)))
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

+ 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. [SOLVED] Countifs + Countifs - replacement?
    By JulieQ in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-05-2015, 03:02 PM
  2. COUNTIFS OR COUNTIFS needs to work
    By joshbellfi in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-23-2013, 10:55 AM
  3. COUNTIFS OR...multiple countifs without duplication in the numbers
    By HooligaD in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-21-2012, 09:53 AM
  4. [SOLVED] Vlookup – Picking up first date and then picking up second date if there is one.
    By CranstonWatts in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 11-21-2012, 11:32 AM
  5. Replies: 0
    Last Post: 12-16-2011, 09:01 AM
  6. Picking the last non-zero value in a row
    By iccy in forum Excel General
    Replies: 3
    Last Post: 11-04-2009, 11:01 AM
  7. Picking more than one name
    By Maniac in forum Excel General
    Replies: 1
    Last Post: 02-01-2005, 12:36 PM

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