What function should be used to count the number of items in a list that meet one and only one specific criterion?

The COUNTIF function is used where specified criterion is single. It can be divided into two parts for further clarification;
  • IF portion of function supplies the criteria to meet for cells or data to count
  • COUNT portion of function totals the number of cells that meet that specified criteria

Basic formula for COUNTIF

The syntax for the COUNTIF function is:

=COUNTIF(range, criterion)

Where,

Range is group of cells that we need to search for. Criterion can be any of any of the followings;

  • A Number, such as 100
  • A text data or text string, such as “Grapes”
  • A cell reference where data is located in sheet, such as A1
  • An expression, such as “<=100”

There are some rules to follow depending upon data range contains number or text values while specifying the criterion in the COUNTIF function.

If the data range contains numbers:

  • Comparison operators, such as > (greater than), >= (greater than equal to), < (less than), <> (not equal to) are used in expression to check the criterion with number. The expression must be enclosed in double quotation marks, such as “<=100”
  • Equal sign (=) is not used in an expression to check equal values, such as equal to 100
  • In expressions using comparison operators and cell references, the comparison operator is joined to the cell reference using the ampersand (&).
  • Comparison operators must be enclosed in double quotation marks, whereas cell references are not enclosed in double quotation marks, such as “>=”&A1

If the data range contains numbers:

  • Text string must be enclosed in double quotation marks, such as “Grapes”
  • Text strings can contain “?” and “*” wildcard characters. To match one character “?” wildcard is used, and to match multiple contiguous characters “*” wildcard is used, such as “P?T” or “*es”

How to enter the COUNTIF function in Google Sheets

When you enter any function in Google sheets, an auto-suggest box pops up to follow that function syntax instead of a dialog box in Excel. Like when we will enter COUNTIF function in Google Sheets auto-suggest box will popup; containing syntax, example, summary related to COUNTIF function and explanation of each part of function as shown below.

What function should be used to count the number of items in a list that meet one and only one specific criterion?

In this article, we will discuss the COUNTIF argument with some criterion for more clarification. Please follow these steps to enter COUNTIF function in Google Sheets.

  1. Keep your cursor in a cell where you want to show your calculations, like cell E1
  2. Enter “=” sign and type COUNTIF function in this active cell E1, an auto-suggested box pops up
  3. Select the range of cells which you want to text again your criterion
  4. Then enter comma “,”
  5. Enter criterion expression to apply at selected range
  6. Finally, press the ENTER key on the keyboard to enter the closing bracket.

Suppose we have sales dataset of some inventory items and we want to use COUNTIF function in Google Sheets to perform the following calculation on this data set.

Count of Sales Greater Than $400

Now we want to test the sales range of B2:B9 again this criterion expression of “>400”. As data range contains numeric values, so we will place the express in double quotation marks, as shown below

You can see the COUNTIF function has tested the selected sales data and counted the values against specified criterion where sales figures are greater than $400 and returned the result as 2

=COUNTIF(B2:B9,">400")

What function should be used to count the number of items in a list that meet one and only one specific criterion?

What function should be used to count the number of items in a list that meet one and only one specific criterion?

Now we will use comparison operator and cell reference in criterion expression to count sales that are greater than the value mentioned in cell reference, such as D2.

We will join comparison operator and cell reference by using an ampersand (&). Comparison operator will be placed in double quotation marks, whereas cell references will not be enclosed in double quotation marks, such as “>”&D2

=COUNTIF(B2:B9,">"&D2)

What function should be used to count the number of items in a list that meet one and only one specific criterion?

What function should be used to count the number of items in a list that meet one and only one specific criterion?

Count of Sales Equal to

IF we want to count the sales figure found in a data range that is exactly equal to a specified value, say $200, the COUNTIF function will be as follows;

=COUNTIF(B2:B9,200)

Here, we will not use the equal sign “=” as comparison operator in criterion expression and criterion numeric value will not be enclosed in double quotation marks.

What function should be used to count the number of items in a list that meet one and only one specific criterion?

Count of Text value or string

We can count the number of times a text value or text string appears in data range in Google Sheets using COUNTIF functions;

=COUNTIF(B2:B16,"Utensil")

Criterion text value will be enclosed in double quotation marks, and cell reference of that value will be used in the formula without double quotation marks, like;

=COUNTIF(B2:B16,D2)

What function should be used to count the number of items in a list that meet one and only one specific criterion?

What function should be used to count the number of items in a list that meet one and only one specific criterion?

Here you can see that COUNTIF has returned the output as number of times (5) a text value is found in data range to test for.

Count of Text value using Wildcard

You can count any instance of a text value in a data range using wildcards, like “*” and “?”. Wildcard search is not case sensitive and it will count any instance of text value, like

=COUNTIF(A2:A9,"*Bottled*")

As criterion text value can be found anywhere in a text string of selected range, then we will place “*” wildcard in start and end of this text value.

What function should be used to count the number of items in a list that meet one and only one specific criterion?

IF you have to count the occurrence of text value only at the end of a text string in the data range, then the formula would be;

=COUNTIF(A2:A9,"*Soda")

What function should be used to count the number of items in a list that meet one and only one specific criterion?

Still need some help with Excel formatting or have other questions about Excel? Connect with a live Excel expert here for some 1 on 1 help. Your first session is always free. 

What function should be used to count the number of items in a list that meet one and only one specified criterion?

COUNTIF is an Excel function to count cells in a range that meet a single condition. COUNTIF can be used to count cells that contain dates, numbers, and text. The criteria used in COUNTIF supports logical operators (>,<,<>,=) and wildcards (*,?) for partial matching.

Which of the following functions tallies the number of cells in a range that contain numbers?

Use the COUNT function in a formula to count the number of numeric values in a range. In the above example, A2, A3, and A6 are the only cells that contains numeric values in the range, hence the output is 3.

How do you view a formula or function in a cell group of answer choices?

To show the formulas instead of their results, press CTRL + ` (you can find this key above the tab key)..
When you select a cell, Excel shows the formula of the cell in the formula bar..
To display all formulas, in all cells, press CTRL + ` (you can find this key above the tab key)..
Press ↓ twice..

Why is it important to use cell references in functions or formulas in Excel?

Cell references are an important part of creating formulas in Excel. Using cell references allows your formulas to update automatically if the value in a particular cell changes and can also assist you in updating formulas as cells are copied or moved.