Simple SUMIF formula gone wrong!

  • Thread starter Thread starter exutable
  • Start date Start date
E

exutable

Hey I was wondering what is wrong with this formula, I want it to sum
only if the row next to it said shipped and the row next to that
doesn't say PAID

Code:
 
try this

=SUMPRODUCT((N2:N35="SHIPPED")*(O2:O35="<>PAID")*(L2:L35))
 
I think duane's suggestion has a typo, try this amendment

=SUMPRODUCT((N2:N35="SHIPPED")*(O2:O35<>"PAID")*L2:L35)
 
yes, but you need another set of ()

=SUMPRODUCT((N2:N35="SHIPPED")*(O2:O35<>"PAID")*(L2 :L35))
 
duane said:
yes, but you need another set of ()

=SUMPRODUCT((N2:N35="SHIPPED")*(O2:O35<>"PAID")*(L2 :L35))

....works fine for me without the parentheses....:)
 

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

Similar Threads


Back
Top