MODE returns the value that appears most often in a range — useful when "typical" means "most common," not "average."
MODE finds the value that occurs most frequently in a range of numbers. Unlike AVERAGE or MEDIAN, it tells you the single most repeated value, not a calculated central point.
It is most meaningful with whole numbers or categories that genuinely repeat — like the most common order size, or the most frequently booked appointment time.
=MODE(number1, [number2], ...)| Argument | Description |
|---|---|
| number1 required | A number or range to analyze. |
| number2, ... optional | Additional numbers or ranges. |
=MODE(A2:A50)If most orders in A2:A50 are for 3 units, this returns 3.
=MODE(B2:B30)Finds the score that the most students achieved, distinct from the class average.
=MODE(1,2,3,4,5)Returns #N/A — MODE requires at least one value to repeat; with no repeats, there is no mode.
Classic MODE only works with numbers. For text, you would need a different approach like COUNTIF combined with INDEX/MATCH.
If every value in the range is unique, MODE returns #N/A.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →