Which function returns the count of the number of cells that meet the specified condition or conditions?

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.

Which function returns the count of the number of cells that meet the specified condition or conditions?

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")

Which function returns the count of the number of cells that meet the specified condition or conditions?

Which function returns the count of the number of cells that meet the specified condition or conditions?

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)

Which function returns the count of the number of cells that meet the specified condition or conditions?

Which function returns the count of the number of cells that meet the specified condition or conditions?

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.

Which function returns the count of the number of cells that meet the specified condition or conditions?

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)

Which function returns the count of the number of cells that meet the specified condition or conditions?

Which function returns the count of the number of cells that meet the specified condition or conditions?

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.

Which function returns the count of the number of cells that meet the specified condition or conditions?

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")

Which function returns the count of the number of cells that meet the specified condition or conditions?

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 is Countif?

The COUNTIF function is a premade function in Excel, which counts cells as specified. It is typed =COUNTIF. NOTE: The COUNTIF function can have basic or more advanced uses. This covers the basic use for how to count specific numbers and words.

Which function is used to count the number of cells?

The COUNT function counts the number of cells that contain numbers, and counts numbers within the list of arguments. Use the COUNT function to get the number of entries in a number field that is in a range or array of numbers.

What function counts the number of cells specified by a given set of conditions or multiple criteria?

Excel COUNTIFS function - syntax and usage The Excel COUNTIFS function counts cells across multiple ranges based on one or several conditions.

How Countif function works in Excel?

The Microsoft Excel COUNTIF function counts the number of cells in a range, that meets a given criteria. The COUNTIF function is a built-in function in Excel that is categorized as a Statistical Function. It can be used as a worksheet function (WS) in Excel.

What does Counta () function do?

The COUNTA function counts cells containing any type of information, including error values and empty text (""). For example, if the range contains a formula that returns an empty string, the COUNTA function counts that value. The COUNTA function does not count empty cells.

Which of the following function can count both the number and the text from a specific range?

Detailed Solution. The correct answer is COUNT IF. COUNT IF function in MS-Excel counts the number of cells within a range that meet the given condition.