Excel experts

Grassshoppa

Brown Belt
@Brown
Joined
Feb 14, 2010
Messages
4,448
Reaction score
2,375
Spreadsheet with hundreds of names. Each name is listed multiple times. Some 7, some 10, some 20, etc. I need Excel to count only the number of names that have 20 rows for each name.

Example, Joe Smith's name is listed on 20 rows. I need Excel to count Joe Smith as "1".

John Smith's name is listed on 20 rows. I need Excel to count John Smith as "2" and so forth.

If Cliff Smith's name is listed 10 times, I don't want Excel to count that one at all.

Any ideas how to do this?
 
I can’t remember the exact formulas for this, but you could create a column that sums up the total of each name.
Then, I’m the next column make it so any number under 20 gives you one value, and any equal to or over 20 gives you another value.
 
I’d probably create a second column and assign everyone a value of one in that column. Create a pivot table with the names as rows, and then a Count field on the number column. Short highest to lowest in the count, omit those below 20, and then add a third column assigning sequential numbers. Should take about 5 minutes tops.
 
Spreadsheet with hundreds of names. Each name is listed multiple times. Some 7, some 10, some 20, etc. I need Excel to count only the number of names that have 20 rows for each name.

Example, Joe Smith's name is listed on 20 rows. I need Excel to count Joe Smith as "1".

John Smith's name is listed on 20 rows. I need Excel to count John Smith as "2" and so forth.

If Cliff Smith's name is listed 10 times, I don't want Excel to count that one at all.

Any ideas how to do this?
There are many ways to do this, and here's one that I think is straightforward and doesn't involve complex formula.

1. Copy and paste the names in a separate column, remove duplicates to get the unique names

2. From that list of unique names, do a countif in a column next to it to find out how many times the names show up

3. Filter out the countif columns to display results of over 20, and you'll get the corresponding names with counts of 20 or more

4. Get back on Sherdog and shitpost more
 
Spreadsheet with hundreds of names. Each name is listed multiple times. Some 7, some 10, some 20, etc. I need Excel to count only the number of names that have 20 rows for each name.

Example, Joe Smith's name is listed on 20 rows. I need Excel to count Joe Smith as "1".

John Smith's name is listed on 20 rows. I need Excel to count John Smith as "2" and so forth.

If Cliff Smith's name is listed 10 times, I don't want Excel to count that one at all.

Any ideas how to do this?


=COUNTIF(A1:A300,"Johnnyboy")

Do this for each name. The first input is the range you want to search.
 
Could have swore there was such thing as count unique.
 
There are many ways to do this, and here's one that I think is straightforward and doesn't involve complex formula.

1. Copy and paste the names in a separate column, remove duplicates to get the unique names

2. From that list of unique names, do a countif in a column next to it to find out how many times the names show up

3. Filter out the countif columns to display results of over 20, and you'll get the corresponding names with counts of 20 or more

4. Get back on Sherdog and shitpost more

This worked great. Thank you good sir.
 
Back
Top