MODE
The MODE
function in Google Sheets returns the most commonly occurring value in a dataset.
Function Syntax and Parameters
Syntax: MODE(value1, [value2, ...])
Parameters:
value1
: The first value or range to consider.value2, ...
: [Optional] Additional values or ranges to consider.
Step-by-Step Tutorial
-
Using
MODE
with individual values:- Example:
=MODE(1, 2, 2, 3, 3, 3)
- Result:
3
- Example:
-
Using
MODE
with a range of cells:- Example: If
A1:A5
has the values1, 2, 2, 3, 3, 3
, then=MODE(A1:A5)
will return3
.
- Example: If
Use Cases and Scenarios
- Survey Responses: Determine the most common response in a survey.
- Stock Analysis: Find the most frequently occurring stock price.
- Test Scores: Identify the most common test score in a class.