I have two columns in my Excel sheet. Column A stores names, column B stores numbers related to those names. Think about it as a score log for the people in column A.
Name | Points
John 5
Adam 3
David 12
John 4
Mark 4
Adam 6
Adam 2
What I want to achieve is to add all the scores of each person as follows (possibly by outputting the result on columns C and D):
Name | Total Points
John 9
Adam 11
David 12
Mark 4
Is this possible?
Thanks for any ideas.
Name | Points
John 5
Adam 3
David 12
John 4
Mark 4
Adam 6
Adam 2
What I want to achieve is to add all the scores of each person as follows (possibly by outputting the result on columns C and D):
Name | Total Points
John 9
Adam 11
David 12
Mark 4
Is this possible?
Thanks for any ideas.