I want to sum numbers in B column based on numbers in A column. For example:
Column A : 2001 2002 2002 2002 2003 2003
Column B: 1 2 3 4 5 6
I want to add a column C that sums up B based on A. My desired result is:
Column A : 2001 2002 2002 2002 2003 2003
Column B: 1 2 3 4 5 6
Column C: 1 9 (2+3+4) 9 9 11 11
I have done a lot of search but really have no clue where to begin, thanks in advance for any help!