The MODE.SNGL function in Google Sheets is used to find the most frequently occurring value in a dataset. It is particularly useful when analyzing data to identify the mode. Learn more about its syntax and usage in our comprehensive guide.
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.SNGLwith individual values:- Example:
=MODE.SNGL(1, 3, 5, 3, 2, 1, 3) - Result:
3
- Example:
-
Using
MODE.SNGLwith a range of cells:- Example: If
A1:A10has the values1, 3, 5, 3, 2, 1, 3, 1, 2, 5, then=MODE.SNGL(A1:A10)will return1as it is the most frequently occurring value.
- Example: If
Working with a Single Value, a List, and a Range
MODE.SNGL accepts numbers one at a time, as a comma-separated list, or as a range — mix and match freely. It returns a single most frequently occurring value in the dataset.
- Single value:
=MODE.SNGL(A1)— with only one value and nothing to repeat, this returns a#N/Aerror, since there's no mode. - List of values:
=MODE.SNGL(A1, A2, A3, A4)— ifA1throughA4are1,2,2,3, this returns2, the value that appears most often. - Range:
=MODE.SNGL(A1:A10)— returns the most common value across every cell in the range. - Mixed:
=MODE.SNGL(A1, A3:A6, 10)— you can combine single cells, ranges, and literal numbers in one call.
Use Cases and Scenarios
- Survey Analysis: Identify the most common response from a group of participants.
- Inventory Management: Determine the most popular product by sales count.
- Exam Analysis: Find the frequently occurring grade in a class.
Related Functions
MODE.MULT: Find all the modes from a dataset.AVERAGE: Calculate the average of a given set of values.