How do I add column values as long as a value in the other column is the same?
e.g. from the following list:
Time Value
10 a
20 b
10 c
10 d
20 f
I want to obtain the following result:
Time Value
10 (a+c+d)
20 (b+f)