+ Reply to Thread
Results 1 to 13 of 13

Count unique data that meets certain condition

Hybrid View

  1. #1
    Registered User
    Join Date
    10-16-2012
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2010
    Posts
    27

    Question Count unique data that meets certain condition

    For example, I have two column of data:

    Name Code
    ABC 10
    DEF 9
    DEF 9
    ABC 10
    ABC 9
    MNO 10
    ABC 11

    I want to count the number of Names when Code is 10. In the above example, it should return 2. (ABC an MNO)

    I am using =SUMPRODUCT((A1:A7<>"")/COUNTIF(A1:A7,A1:A7&"")) to count the number of unique data, which would return a 3 in the above example. However, it does not take into account of the Code value.

    I'd sincerely appreciate your help!

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Count unique data that meets certain condition

    Hi

    One way, as per your example.

    In C1 and copy down.

    =SUMPRODUCT((A1:$A$7<>"")*($B1:$B$7=10))

    Then use.

    =COUNTIF(C1:C7,1)
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: Count unique data that meets certain condition

    Got me stumped on this one.

    So the value you are after is:

    ABC 10
    MNO 10
    = 2

    Or is it me!

  4. #4
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Count unique data that meets certain condition

    Kewin, as OP is gone, i believe YES. This is what is he(she) looking for.

    I want to count the number of Names when Code is 10. In the above example, it should return 2. (ABC an MNO)

    I am using =SUMPRODUCT((A1:A7<>"")/COUNTIF(A1:A7,A1:A7&"")) to count the number of unique data, which would return a 3 in the above example. However, it does not take into account of the Code value.

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

    Re: Count unique data that meets certain condition

    How about?

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)/COUNTIFS(B1:B7,B1:B7&"",A1:A7,A1:A7&""))
    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.

  6. #6
    Registered User
    Join Date
    10-16-2012
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Count unique data that meets certain condition

    Quote Originally Posted by NBVC View Post
    How about?

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)/COUNTIFS(B1:B7,B1:B7&"",A1:A7,A1:A7&""))
    This worked like magic! To be frank I am also having difficulty understanding why &"" works (even though I'm using it), but the post below explained it well. Thank you so much!

  7. #7
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Count unique data that meets certain condition

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)/COUNTIFS(B1:B7,B1:B7&"",A1:A7,A1:A7&""))

    If you have time, can you explain how the red part of the formula, works?

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

    Re: Count unique data that meets certain condition

    If you take those out, and the data in the respective columns contain blanks, you will get errors... this prevents the error.

  9. #9
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Count unique data that meets certain condition

    Thanks teacher!

  10. #10
    Registered User
    Join Date
    10-16-2012
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Count unique data that meets certain condition

    Thanks everyone!

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)/COUNTIFS(B1:B7,B1:B7&"",A1:A7,A1:A7&""))

    This worked well for me. I was also having difficulty understanding why &"" works (despite using it), but NBVC explained it clear and simple. I am still learning about how to use SUMPRODUCT properly, so thanks!

  11. #11
    Registered User
    Join Date
    10-16-2012
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Count unique data that meets certain condition

    i know i marked this as SOLVED, but i was wondering if anyone can help me with this topic again...

    the suggested formula worked when i only have 2 conditions, but how about if i have more?

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)/COUNTIFS(B1:B7,B1:B7&"",A1:A7,A1:A7&""))

    I want to add 2 more conditions, such as C1:C7 <= E1 and C1:C7 >= E2, where C1:C7 have date entries and E1 and E2 are dates.

    Name Code Dates
    ABC 10 2012/11/3
    DEF 9 2012/11/4
    DEF 9 2012/11/5
    ABC 10 2012/11/5
    ABC 9 2012/11/6
    MNO 10 2012/11/6
    ABC 11 2012/11/9

    for instance, if E1 is 2012/11/5 and E2 is 2012/11/6, i want to count the number of unique NAMES for a given CODE between those 2 dates.

  12. #12
    Forum Expert icestationzbra's Avatar
    Join Date
    01-07-2004
    MS-Off Ver
    2007, 2010
    Posts
    1,421

    Re: Count unique data that meets certain condition

    update to NBVC's formula:

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)*(C1:C7>=E1)*(C1:C7<=E2)/COUNTIFS(A1:A7,A1:A7&"",B1:B7,B1:B7&"",C1:C7,C1:C7&""))

    other options for regular formulae:

    =COUNT(INDEX(1/((A1:A7<>"")*(B1:B7=10)*(C1:C7>=E1)*(C1:C7<=E2)),0))
    and for array formulae:

    =SUM(IF(FREQUENCY(IF((A1:A7<>"")*(B1:B7=10)*(C1:C7>=E1)*(C1:C7<=E2),ROW(A1:A7)-MIN(ROW(A1:A7))+1),ROW(A1:A7)-MIN(ROW(A1:A7))+1),1))
    - i.s.z -
    CSE, aka Array aka { }, formulae are confirmed with CONTROL+SHIFT+ENTER.
    Replace commas ( , ) with semicolons ( ; ) in formulae, if your locale setting demands.
    All good ideas are courtesy resources from this forum as well as others around the web.
    - e.o.m -

  13. #13
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Count unique data that meets certain condition

    As from the beginning, I did, my suggestion is using a helper and hidden column.

    In D1 and copy down.

    =SUMPRODUCT(($A$1:A1<>"")*($A$1:A1=A1)*($B$1:B1=10)*($C$1:C1>=$E$1)*($C$1:C1<=$E$2))

    Then

    =SUMPRODUCT((A1:A7<>"")*(B1:B7=10)*(D1:D7=1))

    does the job.
    Attached Files Attached Files

+ 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