=COUNTIF(range,criteria)
When working with data, a common need is to perform summary calculations that show total counts in different ways. For example, total counts by category, color, size, status, etc. The COUNTIF function is a good way to generate these kinds of totals.
If you have a limited number of values to count this is a good solution. However, if you have a large list of values that will change over time, a pivot table is a better option.
Example problem and solution
In the example shown, we have a small set of order data. All orders are for cars, which come in 4 different colors: red, blue, white and black.
To the left, we are using COUNTIF to provide a breakdown by color. The formula in cell G5 is:
=COUNTIF(color,F5)
where “color” is a named range for cells D5:D18. We are using a named range in this case to make the formula easy to copy down the summary table. Alternately, you could use an absolute reference like so:
=COUNTIF(D5:D18,F5)
How this formula works
The COUNTIF function takes two arguments: a range of cells to count, and the criteria to use for counting. In this case we want to count by color, so we have set up a small table that lists all colors in column F. This allows us to use the the color names in column F both for labels, and for the criteria that goes into COUNTIF as the second argument.
In this case, we are testing equality, so we don’t need to use any logical operators. We can simply enter the named range “color” for range, and a reference to the adjacent cell in column F for the criteria.