Originally Posted by
xld
You said it was C or K, but you are only testing for C, so I changed that.
Ahh yes.... It should test for
((Isnumber)*( <= some number)) AND ((=C or =K) AND ( = T))
So if I were to use my "super messy version" it would be:
=SUMPRODUCT((ISNUMBER( 'Cold Difference'!$1:$4))*('Cold Difference'!$1:$4<=Charts!A1)* _
((( 'Cooling Type'!$A$1:$A$4="C") + ( 'Cooling Type'!$A$1:$A$4="K"))* _
('Cooling Type'!$B$1:$B$4="T")))
Without all the whitespace obviously. Just trying to make it legible.
Neatness aside, that works right?
P.S. Why did you use the 2nd 'ISNUMBER' function? How does that work? It appears that
you are testing to see if there is a number, but there is not....there is a "C" or a "K"....
P.P.S. I presume this was a typo right?
=SUMPRODUCT((ISNUMBER('Cold Difference'!$A$1:$IV$4))*('Cold Difference'!$A$1:$IV$4<=Charts!A1)
*(ISNUMBER(MATCH('Cooling Type'!$A$1:$A$4,{"C","K"},0)))*('Cooling Type'!$B$1:$B$4="T"))