Most frequent data in a list

karenO

New Member
Joined
Apr 15, 2002
Messages
47
I have a list of phone numbers and I need a function to show me which one appears most often in the list? Is there a neat little function in the list

Any help appreciated

Karen
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Have you tried CountIF Function to count the rpeated value in a range of data?

=CountIf(A:A,123) will return the number of apperance of 123 in the column A.

GNaga
 
Upvote 0
I could use that these are just numbers called and I don't want to know if a specific number has been called I want to know which one has been called the most. Hope that clarifies it

Karen
 
Upvote 0
I could use that these are just numbers called and I don't want to know if a specific number has been called I want to know which one has been called the most. Hope that clarifies it

Karen
 
Upvote 0
=MODE(Range)

if Range is of numeric type.

=INDEX(Range,MATCH(MAX(SETV(COUNTIF(Range,Range))),GETV(),0))

which you need to array-enter, that is, to hit control+shift+enter at the same time (not just enter). Note that this formula holds for a range that is either of numeric type or type text.

Postscript. SETV and GETV are part of the morefunc.xll add-in, downloadable from:

http://longre.free.fr/english/index.html
This message was edited by aladin akyurek on 2002-09-24 08:33
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,257
Members
449,075
Latest member
staticfluids

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