How I build a formula where I just consider from a data base only.

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

Guest

Im trying to build a formula to sum all the negatives values in a data base.
PLease help me with this.
 
Wilnelia said:
Im trying to build a formula to sum all the negatives values in a data base.
PLease help me with this.

=SUMIF(A1:A10,"<0")

Hope this helps!
 
Example: Sum all negative values in col. A.

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

HTH
Jason
Atlanta, GA
 
A simple sumif should do it
=SUMIF(D:D,"<0")
if you want a positive number

=abs(SUMIF(D:D,"<0"))
or
=-SUMIF(D:D,"<0")
 

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