MODE.MULT
The MODE.MULT
function in Google Sheets is used to find the most commonly occurring values in a dataset. It returns an array of those values. Whether you're analyzing survey responses, customer preferences, or any other data, the MODE.MULT
function can provide valuable insights.
Function Syntax and Parameters
Syntax: MODE.MULT(value1, value2)
Parameters:
value1
: The first value or range of values to consider.value2
: [Optional] Additional values or ranges to consider.
Step-by-Step Tutorial
-
Using
MODE.MULT
with individual values:- Example:
=MODE.MULT(2, 4, 7, 2, 9, 7, 2)
- Result:
[2, 7]
- Example:
-
Using
MODE.MULT
with a range of cells:- Example: If
A1:A10
has the values2, 4, 7, 2, 9, 7, 2, 7, 4, 2
, then=MODE.MULT(A1:A10)
will return[2, 7]
.
- Example: If
Use Cases and Scenarios
- Survey Analysis: Identify the most common responses.
- Product Preference: Determine the most popular choices among customers.
- Grade Distribution: Find the grades that occur most frequently in a class.
Related Functions
MODE
: Find the most common value in a dataset.MODE.SNGL
: LikeMODE
, but returns a single value instead of an array.