[]
        
(Showing Draft Content)

MODE.MULT

This function returns a vertical array of the most frequently occurring value in a set of data.

Syntax

MODE.MULT(number1,[number2],...)

Arguments

This function has these arguments:

Argument

Description

 number1

 [Required] The first number argument for which you want to calculate the mode.

 number2, ...

 [Optional] Number arguments 2 to 254 for which you want to calculate the mode. You can also use a single array or a reference to an array instead of arguments separated by commas.

Each argument can be a double-precision floating-point value, an integer value, or an array (cell range) of these. Up to 255 arguments may be included. You can use a single array (cell range) instead of a list of values. You can use multiple arrays (cell ranges) as well.

Remarks

If no value occurs more than once, the function does not return a value. If more than one value occurs the same number of times, the function returns the first value that repeats that same number of times.

If an array or reference argument contains text, logical values, or empty cells, the function ignores those values; however, the function includes calculations cells with the value zero.

Examples

MODE.MULT(A3,B3,C3,D3)

MODE.MULT(A1:A9)

MODE.MULT(R1C2,12,10,R2C3)

MODE.MULT(A2:A9,B2:B9,B12:35)

MODE.MULT(89,95,88,97,88,74) gives the result 88