Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a list of 135 text entries, some of which duplicate. My goal
is to find the most often used entry. For example: Lets say I have a list: Apple, Apple, Apple, Orange, Orange, Grape I want excel to tell me that Apple is the most often found entry, followed by Orange, and lastly Grape. Any suggestions???? This is kinda like finding the mode of numerical values but I want to find the top five or so entries. Thanks, Brandon |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use =COUNTIF() formulas, but if you have a very long list a Pivot
Table is easier to construct: 1. Put your list in a column of cells starting with row#2, for example A2 thru A100 2. Put a label in A1 You can make a Pivot Table list each item with the count of the number of times it appears in the list. See: http://peltiertech.com/Excel/Pivots/pivotstart.htm -- Gary''s Student - gsnu200715 "Brandon G." wrote: I have a list of 135 text entries, some of which duplicate. My goal is to find the most often used entry. For example: Lets say I have a list: Apple, Apple, Apple, Orange, Orange, Grape I want excel to tell me that Apple is the most often found entry, followed by Orange, and lastly Grape. Any suggestions???? This is kinda like finding the mode of numerical values but I want to find the top five or so entries. Thanks, Brandon |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here's the easiest way:
Assume your data is in the range A2:A20 Enter this formula in B2 and copy down to B20: =IF(COUNTIF(A$2:A2,A2)1,0,COUNTIF(A$2:A$20,A2)-ROW()/10^10) To extract the most frequent entries enter this formula somewhere, say, E2: =IF(ROWS($1:1)<=COUNTIF(B$2:B$20,"0"),INDEX(A$2:A $20,MATCH(LARGE(B$2:B$20,ROWS($1:1)),B$2:B$20,0)), "") Copy down as needed or until you get blanks meaning the data has been exhausted. Biff "Brandon G." wrote in message oups.com... I have a list of 135 text entries, some of which duplicate. My goal is to find the most often used entry. For example: Lets say I have a list: Apple, Apple, Apple, Orange, Orange, Grape I want excel to tell me that Apple is the most often found entry, followed by Orange, and lastly Grape. Any suggestions???? This is kinda like finding the mode of numerical values but I want to find the top five or so entries. Thanks, Brandon |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
find last value in list | Excel Worksheet Functions | |||
How to find a find a list of possible inputs to sum a known amt? | Excel Discussion (Misc queries) | |||
Find all from a list | Excel Discussion (Misc queries) | |||
list 1 has 400 names List 2 has 4000. find manes from list 1 on 2 | Excel Worksheet Functions | |||
find names on list 1 in list 2. list 1 4000 names list 2 400 name | Excel Worksheet Functions |