sumproduct to sum rather than count

detrie

Registered User.
Local time
Yesterday, 19:24
Joined
Feb 9, 2006
Messages
113
Excel 2003

All
This formula will count the occurrences and works great.
I need to use this criteria to get the SUM of nmCapex (a named range) but am not sure how to do it

Code:
=SUMPRODUCT(--(nmIOT=D5)*(nmEngageType="PC")*(--(NOT(ISNUMBER(FIND("Cancelled",nmStatus))))))
 
RESOLVED: sumproduct to sum rather than count

Code:
=SUMPRODUCT((nmCapex) * (nmIOT=D5)*(nmEngageType="PC")*((NOT(ISNUMBER(FIND("Cancelled",nmStatus))))))
 

Users who are viewing this thread

Back
Top Bottom