I am having problem with merging duplicate name in a table like:
Item Class A B C
AA Apple 1 2 4
BB Apple 2 8 9
CC Pear 7 9 10
DD Orange 8 9 0
EE Pear 10 8 2
FF Orange 20 12 3
The Item column is identical, the name in class is duplicate, I would like to merge the duplicate names in Class column and sum up their corresponding values in column A B C, like:
Class A B C
Apple 3 10 13
Pear 17 15 12
Orange 28 21 3
Any suggestion or help is appreciate