Excel MODE Formula

There are two ways to “excel mode formula”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =MODE.SNGL(range) — it returns the most frequently occurring number, and #N/A when no value repeats at all.

On this page8

Syntax

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

Arguments

Argumentrequired / optionalDescription
number1requiredThe first number or range to find the most frequent value in.
number2, ...optionalFurther values or ranges. Text and blanks are ignored.

Related functions

MEDIANAVERAGECOUNTIF
ƒxAverage, Median & ModeLive

n = 7 · Sum = 103.00 · Min = 9.00 · Max = 21.00

Average (mean)
14.71

7 values

Median
15.00
Mode
15.00
=AVERAGE(A1:A7) · =MEDIAN() · =MODE.SNGL()
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

MODE returns the value that appears most often. Modern Excel splits it in two: MODE.SNGL returns a single value and MODE.MULT spills every value tied for most frequent, which matters because ties are common in small datasets and MODE.SNGL silently reports only the first. The legacy MODE still works and behaves like MODE.SNGL. Crucially it only handles numbers — the most common text value needs INDEX with MATCH over a MAX of COUNTIF, not MODE. When nothing repeats it returns #N/A, which is information rather than failure. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “excel mode formula”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Order quantities in B2:B300: =MODE.SNGL(B2:B300) returns the quantity customers pick most often. If several quantities tie, =MODE.MULT(B2:B300) spills all of them. For the most common region name in a text column, use =INDEX(A2:A300, MATCH(MAX(COUNTIF(A2:A300, A2:A300)), COUNTIF(A2:A300, A2:A300), 0)) instead. MODE answers "what is the typical choice" rather than "what is the typical amount", which is the right question for sizes, quantities and ratings. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Here is the takeaway for “excel mode formula”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

Common mistakes

  • Using MODE.SNGL on data with ties and not realising other values were equally frequent.
  • Pointing MODE at a text column, which returns #N/A regardless of how often a word repeats.
  • Treating #N/A as an error when it correctly means "nothing repeats in this data".

Frequently asked questions

Why does MODE return #N/A?

No value occurs more than once. That is the correct answer for data with no repeats, not a fault.

What is the difference between MODE.SNGL and MODE.MULT?

MODE.SNGL returns one value even when several tie. MODE.MULT spills every tied value, so you can see the tie.

How do I find the most common text value?

MODE only works on numbers. Combine COUNTIF with MATCH and INDEX, or build a quick PivotTable and sort by count.

Other ways people ask this

On the way here you may have searched this as “excel formula for mode” and “excel formula mode” — it is all the same task, and this page is the single, complete answer to it.

Why do people search for this in so many different ways?

Because the same task has many names. “excel formula for mode”, “excel formula mode” all point at the one operation explained on this page, which is why they all lead here.