Counting Tariffs

  • Thread starter Thread starter cj21
  • Start date Start date
C

cj21

I have a list of products, each of which has a tarifff. e.g.

Product...Tariff
01234563 10
01423467 10
01423578 20
13466989 5
10457904 25
14456893 30
20345076 5
34056097 20

I want a formula that counts how many different tariff values there
are. In this example there are 5. Is this possible?

Thanks

Chris
 
Why not put a pivot table to the side of your data and use it to list
all tariffs - as a bonus it will tell you how many of each there are.
 
Hi Chris,

Don't ask me how it works. I just copied it from a Google search.

=SUMPRODUCT((B1:B8<>"")/COUNTIF(B1:B8,B1:B8&""))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top