Adding only the negative or positive numers in a column or row

S

slowes

How do I add only the negative or only the positive numbers in a selected
range?
 
M

MrAcquire

To sum negative numbers only in a selected range,

=SUMIF(range,"<0")

To sum positive numbers only in a selected range,

=SUMIF(range,">0")
 
J

Jaleel

Hi,

In another cell put

=SUMIF(range,"<0") to get the total of negative numbers and
=SUMIF(range,">0") for the total of positive numbers.

Regards,

Jaleel
 
Top