If cell on either side is something count in sum

M

mjones

Hi,

I'm looking at an array to make a sum something like this, but it's not
working. Can I get some help?

=IF($G$5:$G$67<>"x",SUM(IF($C$5:$C$67="Company",($D$5:$D$67))),0)

Column D is the amount to sum, but
Column G cannot have an 'x' beside the amount in column D to count
amount in the sum, and
Column C has to match 'Company' beside the amount in column D to count
the amount in the sum as well.

Column D is the invoice amount
Column G is x'd when it's paid
Column C is the company name
E77 is the formula showing how much company has outstanding. I get 0 &
it should be $18,850.00.

Thanks,

Michele
 
G

Guest

Hi, Michelle,

This is a straightforward syntax matter. In the end, you want to perform
the SUM, so the SUM should be the outsidemost function, with the nested IF
statements inside, like this:

=SUM(IF(condition,true,if(condition,true,false),false))

Notice the symmetry if you read it from the center out? It has been about
25 minutes since you posted, so you might have noticed this yourself by now.

Regards,
Marty S.
 
G

Guest

=IF($G$5:$G$67<>"x",SUM(IF($C$5:$C$67="Company",($D$5:$D$67))),0)

One way is to use SUMPRODUCT
Try, normal ENTER will do:
=SUMPRODUCT(($G$5:$G$67<>"x")*($C$5:$C$67="Company"),$D$5:$D$67)
 

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

Top