Now my next issue is, how can I sort these so that I get them in desending order?
So it should be looking like this:
James 4
Nicol 3
Ruby 3
Lucy 2
Tom 2
John 1
Hope you can help with that as well
Supposing, you have a list of names in Column A of Google sheet, and now, you want to count how many times each unique name is appeared as following screenshot shown. This tutorial, I will talk about some formulas for solving this job in Google sheet.
Count number of occurrence in a column in Google sheet with helper formula
Count number of occurrence in a column in Google sheet with formula
Count number of occurrence in a column in Microsoft Excel:
Kutools for Excel’s Advanced Combine Rows utility can help you count the number of occurrence in a column, and it also can help you to combine or sum corresponding cell values based on same cells in another column. Kutools for Excel: with more than 200 handy Excel add-ins, free to try with no limitation in 60 days. Download and free trial Now! |
In this method, you can extract all the unique names from the column firstly, and then count the occurrence based on the unique value.
1. Please enter this formula: =UNIQUE(A2:A16) into a blank cell where you want to extract the unique names, and then press Enter key, all unique values have been listed as following screenshot shown:
Note: In above formula, A2:A16 is the column data that you want to count.
2. And then go on entering this formula: =COUNTIF(A2:A16, C2) beside the first formula cell, press Enter key to get the first result, and then drag the fill handle down to the cells you want to count the occurrence of the unique values, see screenshot:
Note: In above formula, A2:A16 is the column data that you want to count unique names from, and C2 is the first unique value you have extracted.
You can also apply the following formula to get the result. Please do as this:
Please enter this formula: =ArrayFormula(QUERY(A1:A16&{"",""},"select Col1, count(Col2) where Col1 != '' group by Col1 label count(Col2) 'Count'",1)) into a blank cell where you want to put the result, then press Enter key, and the calculated result has been displayed at once, see screenshot:
Note: In above formula, A1:A16 is the data range which including the column header that you want to count.