MODE.MULT

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

Returns the array of all the numbers that appears the most often in a set.

number1The first number you want to include.
number2(Optional) The second number you want to include.

REMARKS
* This function can return multiple values.
* If not entered as an array formula this function is the same as MODE.SNGL
* If there are no duplicates, then #N/A is returned.
* For horizontal arrays, use TRANSPOSE(MODE.MULT())
* This will return more than one result if there are multiple modes.
* Any test, logical values or empty cells are ignored.
* You can have a maximum of 254 numbers.
* You can use the MODE.SNGL function to return the value that occurs most frequently in a list or array of numbers.
* This function was added in Excel 2010
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 AB
1=MODE.MULT(1, 2, 3) = #N/A0
2=MODE.MULT(1, 2, 3, 1) = 11
3=MODE.MULT(1,1,2,2) = {1,2}10
4=MODE.MULT(2,2,1,1) = {2,1} 
5=MODE.MULT(3,1,2,2,1) = {1,2}0
6=MODE.MULT(3,2,1,1,2) = {2,1}text
7=MODE.MULT(B1, B2, B3, B4) = #VALUE!TRUE
8=MODE.MULT(B1, B2, B3, B5) = 0FALSE
9=MODE.MULT(B1, B2, B3, B6) = #N/A=DATE(2024, 1, 1) = 01 Jan 2024
10=MODE.MULT(B1, B2, B3, B7) = #N/A=10/0 = #DIV/0!
11=MODE.MULT(B1, B2, B3, B8) = #N/A 
12=MODE.MULT(B1, B2, B3, B9) = #N/A 
13=MODE.MULT(named_range) = #N/A 
14=MODE.MULT(B1, B2, B3, B10) = #DIV/0! 
15=MODE.MULT(2, "2") = #N/A 
16=MODE.MULT(1, TRUE) = #N/A 
17=MODE.MULT(0, FALSE) = #N/A 
18=MODE.MULT(0, "some text") = #N/A 
19=MODE.MULT({0, "some text"}) = #N/A 
20=MODE.MULT({1, TRUE}) = #N/A 

1 - What number appears most often in the set (1,2,3). No mode.
2 - What number appears most often in the set (1,2,3,1). One mode.
3 - What number appears most often in the set (1,1,2,2). Both the modes are returned.
4 - What number appears most often in the set (2,2,1,1). Both the modes are returned.
5 - What number appears most often in the set (3,1,2,2,1). Both the modes are returned.
6 - What number appears most often in the set (3,2,1,1,2). Both the modes are returned.
7 - What number appears most often in the range "B1", "B2", "B3" and "B4". B4 is an empty cell so #VALUE! is returned.
8 - What number appears most often in the range "B1", "B2", "B3" and "B5". B5 is zero so this gets included. One mode.
9 - What number appears most often in the range "B1", "B2", "B3" and "B6". B6 is text so this gets excluded. No mode.
10 - What number appears most often in the range "B1", "B2", "B3" and "B7". B7 is a logical value to this is excluded. No mode.
11 - What number appears most often in the range "B1", "B2", "B3" and "B8". B8 is a logical value so this is excluded. No mode.
12 - What number appears most often in the range "B1", "B2", "B3" and "B9". B9 is a date so this gets included as a date serial number. No mode.
13 - What number appears most often in the named range that refers to the range "B1:B3". No mode.
14 - What number appears most often in the range "B1", "B2", "B3" and "B10". B10 contains an error so that gets returned.
15 - What number appears most often in the set (2,"2"). Text values that are actually numbers are excluded. No mode.
16 - What number appears most often in the set (1,TRUE). Logical values passed as arguments are excluded. No mode.
17 - What number appears most often in the set (0,FALSE). Logical values passed as arguments are excluded. No mode.
18 - What number appears most often in the set (0,"some text"). Text values passed as arguments are excluded. No mode.
19 - What number appears most often in the array {0,"some text}. Text values inside arrays are excluded. No mode.
20 - What number appears most often in the array {1,TRUE}. Logical values inside arrays are excluded. No mode.

© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top