Find the value that appears most often in a range of numbers.
Copy this formula
=MODE.SNGL(A2:A100)MODE.SNGL returns the single most common number. For text or the most common item including text, use INDEX/MATCH on the highest COUNTIF. MODE.MULT returns all modes when there are ties.
=MODE.SNGL(B2:B100)→44 is the most common rating.
Most common text
=INDEX(A2:A100, MATCH(MAX(COUNTIF(A2:A100, A2:A100)), COUNTIF(A2:A100, A2:A100), 0))Works for text; enter as an array in older Excel.
No value repeats, or the range is text. Use the COUNTIF approach for text data.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.