How to calculate the mode in Google Sheets
The MODE function finds a dataset’s most frequently occurring value in Google Sheets. It’s particularly useful for identifying common patterns or trends within our data. By simply applying the MODE function, Google Sheets quickly provides insights into the central tendency of our dataset.
Syntax
The basic syntax for the MODE function is as follows:
=MODE(number1, number2,...)
Here, number1 and number2 represents the cell number or any numeric value. It’s worth noting that we have the flexibility to include additional cells as needed.
Note: Ranges or cell references may be used instead of explicit values.
Simple values
If we simply want to find out the mode between 10, 20, 30, and 10 we will use the MODE function using the formula below:
=MODE(10,20,30,10)
List of cells
If we want to find the mode by providing the list of cells, we can use the formula below:
=MODE(A1,A2,A3)
Range of cells
If we want to find the mode by providing the range of cells, we can use the formula below:
=MODE(A1:A3)
If we want to use the range of cells, and skip a cell number, we can use the formula below:
=MODE(A1:A3,A5)
The formula above calculates mode of cell A1, A2, A3, and A5.
Steps
The following is a step-by-step guide to using the MODE function:
Select the cell: We click the cell where we want to calculate the mode.
Use the
MODEfunction: We type=MODE(into the selected cell.Select the range: If we want to calculate mode of the number of cells in the range A1 to A5, there are two ways to achieve the desired result:
We can enter “A1:A5” after the opening parenthesis and then close the parenthesis and press “Enter.” The formula should look something like this:
=MODE(A1:A5).We can also enter A1,A2,A3,A4,A5 after the opening parenthesis and then close the parenthesis and press “Enter.” The formula should look something like this:
=MODE(A1,A2,A3,A4,A5).
Let's now apply the steps above on our dataset. Let's suppose we have the following dataset:
Now, our objective is to determine the mode of the marks a student get in the required data set. There are two ways to calculate the mode. Let's use both the ways:
Using the MODE function with list of cells
First we select the cell, where we need to calculate the mode. Let's suppose here the cell number is B9. After we select the “cell(B9),” write the following in the cell:
=MODE(B3,B4,B5,B6,B7)
Let's visualize the above steps in action.
Note: As we can see in the slides above, when multiple cells are added, the system automatically highlights the cell number and alters its color for easier identification.
If an empty cell is included in a mode formula and subsequently populated with a value, the value in “cell B9,” where the mode is calculated, will automatically update to reflect the new value.
Using the MODE function by specifying the range
First we select the cell, where we need to calculate the mode. Let's suppose here the cell number is B9. After we select the “cell(B9),” write the following in the cell:
=MODE(B3:B7)
Let's visualize the above steps in action.
Note: To skip any subject, let’s say “Geography,” we can simply write the range formula as follows:
=MODE(B3:B5,B7)
Things to remember
- If we have a dataset that includes 5, 4, 3, 3, 2, 4, and multiple values with the same highest frequency, the function will return whichever value comes first. In this case, it will return
4. - If we try to find the mode of any value (other than numbers) enclosed in double quotes, it will throw a
#VALUE!error. - Empty cells, text, the logical values
TRUEandFALSE, and text values are all ignored when used with a range or by typing the cell numbers.
Unlock your potential: Google Sheets fundamentals series, all in one place!
To deepen your understanding of Google Sheets, explore our series of Answers below:
Common aggregate functions in Google Sheets
Learn about essential aggregate functions like SUM, AVERAGE, MIN, MAX, COUNT, and more for efficient data analysis.How to calculate the minimum in Google Sheets
Discover how to find the smallest value in a dataset using theMINfunction.How to calculate the median in Google Sheets
Learn how to determine the middle value of a dataset using theMEDIANfunction.How to calculate the maximum in Google Sheets
Explore how to identify the largest value in a dataset using theMAXfunction.How to calculate the average in Google Sheets
Understand how to compute the mean of a dataset using theAVERAGEfunction.How to calculate student grades from percentages in Google Sheets
Learn how to use formulas and conditional formatting to convert percentages into letter grades.How to count values in Google Sheets
Discover how to count the number of values in a range using functions likeCOUNT,COUNTA, andCOUNTIF.How to calculate the sum in Google Sheets
Explore how to add up values in a dataset using theSUMfunction.How to calculate the mode in Google Sheets
Learn how to find the most frequently occurring value in a dataset using theMODEfunction.How to calculate the product in Google Sheets
Understand how to multiply values in a dataset using thePRODUCTfunction.
Free Resources