Questions about COUNT ??

  • Thread starter Thread starter rs
  • Start date Start date
R

rs

I have a column of figures that has both postivie and negative numbers.
-Is there a function that will tell me how many positive numbers there are and
how many negative numbers there are?
-Is there a function that will actually add only the positive numbers as a
sum and only the negative numbers as a sum?

thanks to all for the help . .
 
=COUNTIF(A:A,">0")

=COUNTIF(A:A,"<0")

=SUMIF(A:A,">0")

=SUMIF(A:A,"<0")
 
You tell me whether 0 is a negative or a positive number, I know what I
think As positive and negative are defined in terms of zero, it is neither.
 

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