MODE.SNGL Function

MODE.SNGL Function

MODE.SNGL Function

Find the number that appears most often in a list. Useful when you want the most common score, rating, or ID.

ExcelClash Team
PUBLISHED

Summary

MODE.SNGL returns the number that appears most often in a set of values. If one number repeats more than the others, that repeated number is the result.

This makes the function useful for lists where the most common choice matters more than the average. Ratings, scores, product IDs, response codes, and time slots are all good examples because you usually want to know what shows up most, not what the arithmetic mean is.

Purpose

Find the most common number

Returns the value with the highest frequency in a numeric list.

Return Value

Number

Returns one most frequent value. If no value repeats, Excel returns #N/A.

Syntax

=MODE.SNGL(number1, [number2], ...)

You can pass numbers directly, use one range, or combine several ranges and values in the same formula.

Arguments

  • number1 - [required] The first number, range, or reference to include.
  • number2, ... - [optional] More numbers, ranges, or references. Excel allows up to 254 additional arguments.

MODE.SNGL vs Other Functions

If you are deciding between central-tendency functions, the easiest way is to ask what kind of answer you want.

Function What it returns Use it when
MODE.SNGL One most frequent value You want a single most common number
MODE.MULT All modes You want every tied most frequent value
MEDIAN The middle value You want the center of the sorted list
AVERAGE The arithmetic mean You want the standard average

Using the MODE.SNGL Function

MODE.SNGL is often the better choice when the values are categories stored as numbers. For example, if a store tracks shoe sizes as numbers, an average size may not tell you much, but the most common size tells you what customers buy most often. The same idea works for survey ratings, ticket codes, and repeated time slots.

Microsoft notes that when you use array or reference arguments, text, logical values, and blank cells are ignored, while zero is included. That means a range with numbers and some empty cells can still work fine. If the range contains no repeated numbers at all, the function returns #N/A because there is no mode to return.

One practical detail is the name itself. MODE.SNGL is the modern single-result version of the older MODE function. If you only want one result, this is the function to use. If you want all tied modes, switch to MODE.MULT.

Example 1 - Find the most common vote

Here the number 5 appears more often than the others, so that is the result.

=MODE.SNGL(B1:B3) // Returns the most common value in the range.
Check Answer
Challenge #1
Target: Sheet1!F1
Basic Frequency Search

Find the most common score in B1 to B10. Formula: =MODE.SNGL(B1:B10).

Example 2 - Use direct numbers in the formula

You do not always need a worksheet range. MODE.SNGL also works with typed values.

=MODE.SNGL(1,2,2,3) // Returns 2.
Check Answer
Challenge #2
Target: Sheet1!F2
Repeated Number Check

Find the most frequent number in the set 1, 2, 2, 3. Formula: =MODE.SNGL(1,2,2,3).

Example 3 - Pull the most common score from a list

This is useful for test results, ratings, and review scores when you want the value people picked most.

=MODE.SNGL(B1:B10) // Returns the repeated score that appears most often.
Check Answer
Challenge #3
Target: Sheet1!F3
Most Common Numeric Value

Find the most frequent numeric value in B1:B10. Formula: =MODE.SNGL(B1:B10).

Example 4 - Find the busiest repeated hour

Repeated time values can show a pattern in activity. MODE.SNGL helps you pick out that repeated peak.

=MODE.SNGL(B1:B10) // Returns the most frequent hour in the range.
Check Answer
Challenge #4
Target: Sheet1!F4
Popular Survey Score

Identify the most common score in B1:B10. Formula: =MODE.SNGL(B1:B10).

Conclusion Recap

  • Main job: MODE.SNGL returns one most frequent number.
  • Best for repeated values: It works well for ratings, IDs, scores, and time blocks.
  • Reference behavior: Text, logical values, and blanks are ignored, but zero is counted.
  • No duplicates: If nothing repeats, the result is #N/A.
  • Modern choice: MODE.SNGL is the current single-result version of MODE.
  • Need all tied modes: Use MODE.MULT instead.
Tactical Arena
Select Scenario:
Share MODE.SNGL Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.