0
I have an Excel table with 15 thousand lines. Each of these lines means a product sold.
The layout is like this:
Produto - Nome do comprador - Valor do produto
I need to make a ranking of the five people who spent the most money on the company.
For this, I need to perform a calculation that adds up the amount of 'buyer’s name' that there is and add the value of purchases, adding the column 'product value'.
That is, if there is a register João da Silva, I need to know if he bought more than once and what was the total value of products he bought.
I thought about using PROCV, but I don’t know how to do this count. Yeah, plus I need there to be a connection between the name and how much the person spent in the store.
Does anyone have any idea what formula I could use?
You can add a column to find out how many times each person has purchased at the company.
=CONTAR.SE(..
– R.Galamba