Get most frequently occurring numbers
=MODE.MULT(number1, [number2], ...)
| Parameter | Description |
|---|---|
number1 |
A number or cell reference that refers to numeric values. |
number2 |
[optional] A number or cell reference that refers to numeric values. |
In the example shown, the formula entered in D5:D9 is:
=MODE.MULT(B5:B16)
MODE returns the most frequently occurring number(s) in supplied data. For example,
=MODE.MULT(1,2,4,4,5,5,5,6) // returns 5
=MODE.MULT(7,8,9,7,9) // returns 7
If there are no duplicate numbers, the MODE.MULT function returns the #N/A error:
=MODE(7,9,6,5,3,1,0) // returns #N/A
If there is more than one mode in a set of data, MODE.MULT will return more than one result:
=MODE.MULT(1,3,3,5,5,7,7,8) // returns {3,5,7}
The MODE.MULT function returns results in a vertical array. To return a horizontal array, add the TRANSPOSE function:
=TRANSPOSE(MODE.MULT(range))