What formula will count the number of data < 0 in a column?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a list with values from -50 to + 50. I need a formula that will
produce the percentage of values in that column less than zero.
 
Hi
=COUNTIF(A1:A100,"<0")/COUNT(A1:A100)
and format as percentage
 
If the range is A1:A4:

=COUNTIF(A1:A4,"<0")/COUNT(A1:A4)*100

Since COUNTIF and COUNT cover the same range, it would be convenient to name
the range.
 

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