How do I count only values which are over a certain amount?

  • Thread starter Thread starter IssieC
  • Start date Start date
I

IssieC

I want to count the number of items in a column which are over a certain
level. For example, I want the total of all items which are over 0.01
in value. Please help!
 
suppose you data is in the range of A1:A50, use following function
=SUMIF(A1:A50,">0.01")
 
If you want the count, use

=countif(A1:A100,">.01")

If you want the sum, use

=sumif(A1:A100,">.01,A1:A1000)
 

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