Suppose I have the following data:
ID Characteristic Number
1 A 3
2 B 4
3 A 1
4 A 6
I want a resulting table that adds up the number column like this:
ID Characteristic Number Sum
1 A 3 3
2 B 4 7
3 A 1 8
4 A 6 14
Basically, it adds the new number to the previous sum and is ordered by the ID.
Thanks in advance for the help.