I have a single column of data in Column A that looks like this:
Joe
Joe
Joe
John
John
Josh
Josh
Josh
Josh
Can someone please provide me with code that would sum the number of Joes, Johns, and Joshs and put the sum for each name in the adjacement column. Thank you in advance! Huge help.. I have 5000 rows of names
You can use Dictionary class to get count of each name in a
string
. Please, see:Result:
[EDIT]
As to the changed question, you have to change only one loop. instead of:
use:
Final note:
I'd suggest to move your focus on array formula, which enables you to make any calculation.
Steps to do (MS Excel 2010 and higher):
1) Copy column
A
into new Sheet2) Remove duplicates (use Menu)
3) Select column
B
and insert the following formula:=SUM(IF((Sheet1!$A$1:$A$1000=$A1), 1, 0))
4) Accept fomula by pressing
CTRL
+SHIFT
+ENTER