sum with criteria

G

Guest

I have an invoice & payments tracker for sub-contractors, im trying to create
a formula which will allow me to calculate how much each contractor is owed.

For each job, the subbie is allocated a proportion of the total invoice, and
gets paid when the client pays

At the moment I have something like this:

Subbie Subbie’s commission Date Client Paid
Adam 100
John 200 1/09/2005
John 50
Adam 300 5/09/2005
John 100

I need a formula to add all of Adam’s commissions which have NOT been paid
by the client, ie = 100

Then another formula to add all of John’s commissions which have NOT been
paid by the client, ie = 150

I’m sure its really simple, I’ve been trying to figure it out but keep
getting #VALUE errors

Thanks heaps!
 
B

Biff

Hi!

Try this:

=SUMPRODUCT(--(A1:A10="Adam"),--(C1:C10=""),B1:B10)

Better to use a cell to hold the name:

D1 = Adam

=SUMPRODUCT(--(A1:A10=D1),--(C1:C10=""),B1:B10)

Biff
 
P

Peo Sjoblom

=SUMPRODUCT(--(A2:A10="Adam"),--(C2:C10<>""),B2:B10)

replace "Adam" with a cell reference and then change the name in the cell,
this assumes that empty cells (in date range) are not paid and non empty
paid

--
Regards,

Peo Sjoblom

(No private emails please)
 
P

Peo Sjoblom

Oops! Change the <>"" to ="" like in Biff's answer, I reversed it

--
Regards,

Peo Sjoblom

(No private emails please)
 

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