peltier tech utilities
Learn how to create Excel dashboards.

Categories

30 Excel Functions in 30 Days

Archives

Count Cells Greater Than Set Amount With Excel COUNTIF Function

One of the tasks you have to do quite often in Excel is to count things. For example, you could have a list of students and their test scores.


CountifOp00


If the passing score is 50, how can you get Excel to count the number of students who passed the test?


Use COUNTIF and an Operator


The Excel COUNTIF function will count cells, based on the criteria that you enter. As part of the criteria, you can use an operator, such as greater than, or less than, to count a specific range of numbers.


In this example, the passing score is 50. To find the students who failed the test, you'd count the scores that are less than 50 -- <50.


To include this operator in the COUNTIF criteria, enclose the operator and number in double quote marks.


=COUNTIF(B2:B11,"<50")


CountifOp01


Use a Cell Reference with COUNTIF Criteria


Instead of typing a number in the COUNTIF criteria, you can use a cell reference. In this example, cell F5 contains the passing score.


To find the students who passed the test, you'd count the scores that are greater than or equal to the value in cell F5 -- >=F5.


To include a cell reference and operator in the COUNTIF criteria, enclose the operator in double quote marks, and use an ampersand before the cell reference.


=COUNTIF(B2:B11,">=" & F5)


countifop02


Cell Reference Automatically Updates


An advantage to using a cell reference in the COUNTIF criteria is that the result will automatically update, if the value in the referenced cell changes. In the screenshot below, you can see that the passing score has been increased from 50 to 70. Because the Passed formula uses a reference to cell F5, the count is automatically updated. The Failed formula has the passing score of 50 typed into the criteria, so that value would have to be changed, before the result is updated.


CountifOp03



Watch the COUNTIF Video



To see the steps for creating a COUNTIF formula with an operator, you can watch this short Excel tutorial video.



_____________

Related Posts Plugin for WordPress, Blogger...

3 comments to Count Cells Greater Than Set Amount With Excel COUNTIF Function

  • Kanti Chiba

    Hi Debra,

    When using a cell reference in the COUNTIF formula, you could enter the >= directly in the cell.
    So that in the above example F5 would be >=50 and the formula would be COUNTIF(B2:B11,F5).

    I have used the above with COUNTIF(xxx,xx) – COUNTIF(xxx,yy) to arrive at the count between two values
    Enjoy your blog very much, thanks for all the effort

    Regards

    Kanti

  • Great Blog, thanks.

    Excel 2007 also has the additional function of COUNTIFS:

    =COUNTIFS(criteria range 1, criteria 1, criteria range 2 ....)

    This enables you to count the number of cells based on multiple criteria. An excellent addition from Microsoft.

  • Contextures Blog » Quickly Change Results for Excel COUNTIF Function

    [...] month we looked at the COUNTIF formula, and how you can type an operator, then refer to a worksheet cell, to set a minimum value for [...]

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>