+ Reply to Thread
Results 1 to 17 of 17

counting data ignoring certain cells

Hybrid View

  1. #1
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    counting data ignoring certain cells

    this is probably two questions in one-
    I have a matrix table with two columns that need cell counting with criteria.
    Basically one formula will ignore any rows that have blank cells or a zero quantity. It will also ignore duplicated Part Numbers if any. What should be left are non-duplicated unique parts having a quantity of 1,2,...etc(no zeros). The final count should be 13 which is really a cell count.

    The second formula does exactly the same but instead of only counting 1,2,.. etc it will also count the zero quantities 0,1,2, etc. The final count will be 15 for that one I attached a spreadsheet with data and result table-if you wish to help. what formulas should i use?- please.

    Thanks.
    Attached Files Attached Files

  2. #2
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    not sure if my explantion is clear- i probably should replace the word 'or' with an 'and' - "blank cells AND zero quantity."

    Quote Originally Posted by Red fuji View Post
    Basically one formula will ignore any rows that have blank cells AND zero quantity. It will also ignore duplicated Part Numbers if any. What should be left are non-duplicated unique parts having a quantity of 1,2,...etc(no zeros). The final count should be 13 which is really a cell count.
    Thanks.

  3. #3
    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
    53,048

    Re: counting data ignoring certain cells

    ok, for the 2nd part, in D1, copied down, i added the folllowing formula, and got your total of 15...

    =IF(B2="","",IF(ISERROR(VLOOKUP(A2,$A$1:A1,1,FALSE)),1,""))
    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

  4. #4
    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
    53,048

    Re: counting data ignoring certain cells

    looking at your file, i come up with 14, not 13, for the 1st part. please double-check your answer? i used...

    =COUNTIF(Table1[quantity in box A],">0")

    working on the 2nd part, but that may need a helper column

  5. #5
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: counting data ignoring certain cells

    I'm not sure about question #2, but for #1, maybe...

    Entered with Ctrl + Shift + Enter
    =SUM(IF(FREQUENCY(IF(ISNUMBER(1/Table1[quantity in box A]),MATCH(Table1[Part Number],Table1[Part Number],0)),ROW(Table1[Part Number])-ROW(A$2)+1),1))
    HTH
    Regards, Jeff

  6. #6
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: counting data ignoring certain cells

    I don't claim to be a formula guy, but how about for Q #2

    =SUM(IF(FREQUENCY(IF(Table1[quantity in box A]<>"",MATCH(Table1[Part Number],Table1[Part Number],0)),ROW(Table1[Part Number])-ROW(A$2)+1),1))

    Also an array

  7. #7
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    for the 13 answer this string works:
    {=SUM(IF(FREQUENCY(IF(ISNUMBER(1/Table1[quantity in box A]),MATCH(Table1[Part Number],Table1[Part Number],0)),ROW(Table1[Part Number])-ROW(A$2)+1),1))}

    for the 15 answer this string works:
    {=SUM(IF(FREQUENCY(IF(Table1[quantity in box A]<>"",MATCH(Table1[Part Number],Table1[Part Number],0)),ROW(Table1[Part Number])-ROW(A$2)+1),1))}

    when I covert the table to 'range format' it automatically adjusts the formula

    I may be doing something wrong but-
    This one gives me 14 instead of 13:
    =COUNTIF(Table1[quantity in box A],">0")

    This one gives me 1 instead of 15:
    =IF(B2="","",IF(ISERROR(VLOOKUP(A2,$A$1:A1,1,FALSE)),1,""))

    I am a happy member-
    Kudos and thanks to you all.
    Last edited by Red fuji; 05-31-2012 at 11:29 AM.

  8. #8
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: counting data ignoring certain cells

    With this...

    =COUNTIF(B2:B26,">0")

    I get 14 too, but that's becasue part #05 is a duplicate and both of them are greater than 0. Row 6 and 7

    This one...

    =IF(B2="","",IF(ISERROR(VLOOKUP(A2,$A$1:A1,1,FALSE)),1,""))

    ...should give you 1 and not 15! Put this formula in D2, copy down to D26 and then =SUM(D2:D26). The answer is 15.

  9. #9
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    How can i get these two formulas to look at the visible cells only and not the hidden ones ?? I am using autofiltering to exclude certain cells/rows from the calculation but the forumla doesnt care-it still counts them.

    =SUM(IF(FREQUENCY(IF(ISNUMBER(1/Sheet1!$B$2:$B$26),MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))

    =SUM(IF(FREQUENCY(IF(Sheet1!$B$2:$B$26<>"",MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))

    the file is attached in first post.


    Thanks.

  10. #10
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: counting data ignoring certain cells

    This is going to take a little more formula power than I posses. I know it involves the Subtotal function, but that's as far as it goes.

    I can put in a message to those who are better fit to make this work.

  11. #11
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,246

    Re: counting data ignoring certain cells

    Maybe this is what you are looking for:

    http://office.microsoft.com/en-us/ex...005209288.aspx


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  12. #12
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: counting data ignoring certain cells

    In b1 the subtotal formula, for the visibel cells.

    Also added a pivot table.

    It can be very usefull for questions like this.

  13. #13
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    Ok - now i know that i need to include 'subtotal' and the '109' to exclude hidden values but where do i insert this in the jumbo formula; i tried but my limited experience didnt get me far.
    SUBTOTAL(109,$a$3:$a$27) where should i insert this in the below formulas?


    =SUM(IF(FREQUENCY(IF(ISNUMBER(1/Sheet1!$B$2:$B$26),MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))

    =SUM(IF(FREQUENCY(IF(Sheet1!$B$2:$B$26<>"",MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1! $A$2:$A$26)-ROW(A$2)+1),1))


    Thanks.

  14. #14
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: counting data ignoring certain cells

    Subtotal works based on a filter.

    You filter a value (e.g. 1, 2), then subtotaal counts the visiable cells (in this example 1,2).

    So I don't think you need to add the other formula.

  15. #15
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    I am not just counting visible cells;

    I have two formulas that need tweeking. the difference between them is #1 includes zero qty parts into the count while #2 doesn’t. Both formulas function well except they need to ignore the hidden cells even if they have values in them (criteria 'c')

    =SUM(IF(FREQUENCY(IF(Sheet1!$B$2:$B$26<>"",MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1! $A$2:$A$26)-ROW(A$2)+1),1))
    This formula #1 needs to be revised to follow this criteria:
    a. Ignores blank cells
    b. ignores duplicated parts(it only countsone of them)
    c. ignores hidden cells even if they have values in them.

    =SUM(IF(FREQUENCY(IF(ISNUMBER(1/Sheet1!$B$2:$B$26),MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))
    This formula #2 needs to be revised to follow this criteria:
    a. Ignores blank cells
    b. ignores duplicated parts(it only counts one of them)
    c. ignores hidden cells even if they have values in them.
    d. ignores cells with '0' quantity


    The sample file is attached in first post.

    BTW- pivot tables are nice but they wont work for what i am looking for. Thanks for the help.

    Thank you.

  16. #16
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: counting data ignoring certain cells

    I reckon:

    F2: =SUM(IF(FREQUENCY(IF(ISNUMBER(1/SUBTOTAL(109,OFFSET(Sheet1!$B$2:$B$26,ROW(Sheet1!$B$2:$B$26)-MIN(ROW(Sheet1!$B$2:$B$26)),0,1))),MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))

    G2: =SUM(IF(FREQUENCY(IF(SUBTOTAL(102,OFFSET(Sheet1!$B$2:$B$26,ROW(Sheet1!$B$2:$B$26)-MIN(ROW(Sheet1!$B$2:$B$26)),0,1)),MATCH(Sheet1!$A$2:$A$26,Sheet1!$A$2:$A$26,0)),ROW(Sheet1!$A$2:$A$26)-ROW(A$2)+1),1))
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  17. #17
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: counting data ignoring certain cells

    JosephP
    I ran some tests on the actual data and your formula update seems to work. ( it is as long as a freight train but what the heck - it works.

    Thank You.

+ 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