Mode.mult array function not displaying formulas

DrBacon

New Member
Joined
Sep 4, 2018
Messages
27
Hello all,

I have the several values, and just by looking at it, there are 3 values that repeat the most, 24, 47 and 30. But when I use the mode.mult in an array formula, it only displays 25. Even if I select 3 cells to use the array formula, all 3 cells show 25. How can I correct this?

Amount USD
5
5
5
25
25
25
25
25
25
25
25
25
25
25
25
25
25
25
28
30
30
30
35
40
47.28
47.28
47.28
47.28
47.28


<colgroup><col></colgroup><tbody>
</tbody>
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
MODE.MULT shows multiple results only when there are multiple values with the highest frequency. It is not your case because only 25 has 15 occurrences (highest frequency), while 47.28 occurs 5 times, and 5 occurs 3 times.

To get the number with the highest frequency , the second and the third, try something like...


A
B
C
1
Amount USD​
Result​
2
5​
25​
3
5​
47,28​
4
5​
5​
5
25​
6
25​
7
25​
8
25​
9
25​
10
25​
11
25​
12
25​
13
25​
14
25​
15
25​
16
25​
17
25​
18
25​
19
25​
20
28​
21
30​
22
30​
23
30​
24
35​
25
40​
26
47,28​
27
47,28​
28
47,28​
29
47,28​
30
47,28​

Array formula in C2 copied down
=MODE(IF(ISNA(MATCH(A$2:A$30,C$1:C1,0)),A$2:A$30))
Ctrl+Shift+Enter

M.
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,047
Members
449,064
Latest member
scottdog129

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top