3rd most common number in series

D_Spark

Board Regular
Joined
Feb 4, 2007
Messages
232
Currently I have the following formulas to show the most common number in series (H166) and 2nd most common number (H167)…..In cell H168 I want to create a formula to show the 3rd Most Common Value in series, but are having problems creating it.

CELL H166
=(MODE(H131:H165))

CELL H167
=MODE(IF(H131:H165<>MODE(H131:H165),H131:H165,""))
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
These will do it, second and third need to be array confirmed with Ctrl Shift Enter.

H166 =MODE(H131:H165)
H167 =MODE(IF(H131:H165<>H166,H131:H165))
H168 =MODE(IF(H131:H165<>H166,IF(H131:H165<>H167,H131:H165)))
 
Upvote 0

Forum statistics

Threads
1,213,560
Messages
6,114,306
Members
448,564
Latest member
ED38

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