Sumproduct for Values over a certain Value eg 0.00

E

enna49

Hi

I am using the code below and only want to sum the Values over 0.00, but if
I add >0 to this it does the COUNT. Please can you let me know if there is
a way of doing this. I have searched and cannot find, maybe I am heading in
the wrong direction.

=SUMPRODUCT(--('FULL CURRENT ATB'!$C$2:$C$4030=$B$3)*('FULL CURRENT
ATB'!$O$2:$O$4030))

Thanking you
 
M

Max

Assuming the col O is the sum range which may contain negative values as well
presumably, you could frame it up like this:
=SUMPRODUCT(('FULL CURRENT ATB'!$C$2:$C$4030=$B$3)*('FULL CURRENT
ATB'!$O$2:$O$4030>0),'FULL CURRENT ATB'!$O$2:$O$4030)
Success? hit the YES below
 
E

enna49

Thank you - Worked perfectly

Max said:
Assuming the col O is the sum range which may contain negative values as well
presumably, you could frame it up like this:
=SUMPRODUCT(('FULL CURRENT ATB'!$C$2:$C$4030=$B$3)*('FULL CURRENT
ATB'!$O$2:$O$4030>0),'FULL CURRENT ATB'!$O$2:$O$4030)
Success? hit the YES below
 

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