GOOGLE SHEETS FUNCTION-COUNTIF

INTRODUCTION

COUNTIF function , as the name suggests, does the counting job in GOOGLE SHEETS , just like the COUNT FUNCTION with the difference that we can provide condition in COUNTIF FUNCTION which cells to count.

The other difference is that it works independently of the type of data which means that it would work for numbers as well as text or any other data type.

COUNTIF FUNCTION is very helpful when we need to use any nested functions to make a check on the number of cells containing the number or number type of data.

Let us learn ,how to use COUNTIF FUNCTION IN GOOGLE SHEETS .

WHAT COUNTIF FUNCTION DOES IN GOOGLE SHEETS

COUNTIF FUNCTION returns the total number of cells from a given data set or range which fulfill a particular given criteria or condition.

PREREQUISITES TO LEARN COUNTIF FUNCTION

THERE ARE A FEW PREREQUISITES WHICH WILL ENABLE YOU TO UNDERSTAND THIS FUNCTION IN A BETTER WAY.

  •  Basic understanding of how to use a formula or function.
  •  Basic understanding of rows and columns in Excel.
  • Some information about the STATISTICAL terms is an advantage for the use of such formulas.
  •  Of course, GOOGLE SHEETS access.
  • If you already have some experience with any spreadsheet software.

SYNTAX OF COUNTIF FUNCTION IN GOOGLE SHEETS

The Syntax for the function is

=COUNTIF(RANGE, CRITERIA)

RANGE Given range which needs to be scanned to find out the number of cells which fulfill the criteria

CRITERIA The criteria on the basis of which , cells will be counted.

NOTE* CRITERIA NEEDS TO BE GIVEN IN THE “”.

EXAMPLE: COUNTIF FUNCTION IN GOOGLE SHEETS

DATA SAMPLE

Let us take a mixed data consisting of numbers, dates, numbers as text and text etc. so that we can check the working of function COUNTIF by giving different criteria.

The data used is shown below.

DATA
12
15
20
HI
I
LOVE
GOOGLE
SHEETS
HELLO
HIRE
FIRE
WIRE
TYRE
LIAR
23
435
56
76
87
43

We’ll find out the cells which has value LESS THAN 20

and

The cells which has value less than 12 OR greater than 400.

And finally using a wildcard will find the words which has RE at the end as suffix.

USING COUNTIF FUNCTION IN GOOGLE SHEETS

STEPS TO USE COUNTIF FUNCTION-EXAMPLE

STEPS:

1. Place the cursor in the cell and type the following function

CRITERIA 1: <20

=COUNTIF(C5:C24,”<20″)

2. Press ENTER, the answer will appear as 2.

3. Place the cursor in the cell and type the following function

CRITERIA 2: <12 or >400

=COUNTIF( C5:C24,”<12″)+COUNTIF ( C5:C24 ,” >400 ” )

*If there are two conditions, its better to make a logic like the one we made. It fulfills the conditions but the condition is single.

4. Press ENTER, the answer will appear as 1 as there is no values less than 12 and only one value greater than 400.

5. Place the cursor in the cell and type the following function

CRITERIA 3: WORDS ENDING WITH “RE” [USING COUNTIF TO USE WILDCARDS IN GOOGLE SHEETS]

=COUNTIF(C5:C24,”*RE”)

6. Press ENTER, the answer will appear as 4.

The answers can be checked manually. We find that all answers are correct.

GENERALIZED STEPS TO USE COUNTIF FUNCTION

HERE ARE THE STEPS TO USE COUNT FUNCTION

  • Type the function
  • =COUNTIF(RANGE, CRITERIA)  in the cell where we want the result.
  • Press ENTER and the result will appear.