sumif function

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

Guest

Is it possible to =sumif(and(a1:a10,"hello",c1:c10),(left(d1:d10,2)="AD")
somethin like this?
 
Try
=sumproduct(--(a1:a10="hello"),--(left(d1:d10,2)="AD"),c1:c10)

[the --( is to convert a logical true false to 1,0]
 
Use Sumproduct instead.
=Sumproduct(--(A1:A10="hello"),--(left(d1:d10,2)="AD"),(C1:C10))
Alok Joshi
 
No, but you can use SUMPRODUCT

=SUMPRODUCT(--(A1:A10="hello"),--(LEFT(D1:D10,2)="AD"),C1:C10)


Regards,

Peo Sjoblom
 

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