Merge same data in different lines (libreoffice)

18 Views Asked by At

I have a scenario similar to this:

Products Amount sold
A 1
B 4
C 3
A 2
C 1

I want to merge all lines with the same product, and sum it's sells, like this:

Products Amount sold
A 3
B 4
C 4

I use this to count the number of products someone has bought. If someone buys 5 B products, I add them to a new line. I don't think this is the best way to do it, but it should work for now.

Now I want to know how many products of each were sold.

Is there any magical function to help me?

0

There are 0 best solutions below