Back to Functions

MODE.SNGL

See MODE

StatisticalMODE.SNGL(value1, [value2, ...])

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

  1. Using MODE.SNGL with individual values:

    • Example: =MODE.SNGL(1, 3, 5, 3, 2, 1, 3)
    • Result: 3
  2. Using MODE.SNGL with a range of cells:

    • Example: If A1:A10 has the values 1, 3, 5, 3, 2, 1, 3, 1, 2, 5, then =MODE.SNGL(A1:A10) will return 1 as it is the most frequently occurring value.

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/A error, since there's no mode.
  • List of values: =MODE.SNGL(A1, A2, A3, A4) — if A1 through A4 are 1, 2, 2, 3, this returns 2, 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

  1. Survey Analysis: Identify the most common response from a group of participants.
  2. Inventory Management: Determine the most popular product by sales count.
  3. 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.

Related Articles

Newsletter

More MODE.SNGL examples coming soon.

We are building short, practical updates for Sheets power users.