Value 0

G

Guest

Hello from Steved

=SUMPRODUCT(--($B$4:$B$15="1"),($C$4:$C$15="P"),$H$4:$H$15))

is returning a 0 value

What Have I done wrong please.

Thankyou.
 
R

RagDyer

Maybe get rid of the quotes around the 1?

If 1 is supposed to be a number, the quotes make it text.
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
B

Biff

In addition to RD's suggestion....

There is one too many closing ")" at the end of the formula. Also, using the
double unary syntax, you're missing a set before the second array:

=SUMPRODUCT(--($B$4:$B$15=1),--($C$4:$C$15="P"),$H$4:$H$15)

That should do it!

Biff
 
G

Guest

Thankyou.

Biff said:
In addition to RD's suggestion....

There is one too many closing ")" at the end of the formula. Also, using the
double unary syntax, you're missing a set before the second array:

=SUMPRODUCT(--($B$4:$B$15=1),--($C$4:$C$15="P"),$H$4:$H$15)

That should do it!

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