Top 5 numbers in a range

Thehub

New Member
Joined
Aug 1, 2017
Messages
15
Office Version
  1. 365
Platform
  1. Windows
I have a table with 130 rows and 5 columns. Each cell contains an integer between 1 and 49 inclusive. No number is repeated within a row.

I need to find the top 5 different numbers within that range. Anyone help?
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Here is one solution.
Top1 = =LARGE($A$1:$E$130,1)
Top2 = =LARGE($A$1:$E$130,2)
Top3 = =LARGE($A$1:$E$130,3)
Top4 = =LARGE($A$1:$E$130,4)
Top5 = =LARGE($A$1:$E$130,5)
 
Upvote 0
What version of Excel are you using?
Please update your account details to show this, as it affects which functions you can use.
 
Upvote 0
Thanks for that.
As you have 365 another possible option is
Excel Formula:
=LARGE(A1:E130,SEQUENCE(5))
 
Upvote 0
Here is one solution.
Top1 = =LARGE($A$1:$E$130,1)
Top2 = =LARGE($A$1:$E$130,2)
Top3 = =LARGE($A$1:$E$130,3)
Top4 = =LARGE($A$1:$E$130,4)
Top5 = =LARGE($A$1:$E$130,5)
Unfortunately, this only gives the single most frequent number. But thanks for your help
 
Upvote 0
Thanks for that.
As you have 365 another possible option is
Excel Formula:
=LARGE(A1:E130,SEQUENCE(5))
Unfortunately, this only gives the single most frequent number. But thanks for your help
 
Upvote 0
What exactly are you looking for?
The top 5 per row, the top 5 per column?
 
Upvote 0
Could you leave an example of your spreadsheet here so we can help you better?

Thanks!
 
Upvote 0
Having re-read your op do you want the top 5 unique numbers from the entire data?
Also do you have the LET function in your version of Excel?
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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