Countif ??

G

Graham

Hi ,

What is the function i need to use if I wish to sum of
column K (dollar value ) , if column A = "example 1" ,
Column C = "example 2" , Column D = "example 4"

Thanks in advance.

Graham
 
R

Ragdyer

Try this:

=SUMPRODUCT((A1:A100="example 1")*(C1:C100="example 2")*(D1:D100="example
4")*K1:K100)
 
D

Domenic

Hi,

=SUMPRODUCT((A1:A100="example 1")*(C1:C100="example
2")*(D1:D100="example 4"),K1:K100)

Hope this helps!
 
B

Biff

Hi Graham!

Try this:

=SUMPRODUCT(--(A1:A100="example 1"),--(C1:C100="example
2"),--(D1:D100="example 4"),K1:K100)

Biff
 

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