jassybun
Member
Code:
=SUMPRODUCT((A$8:A$1000=6002)*(AD$8:AD$1000="Refer to ODSE"))
I am trying to get a count on cells in my AD column for a specific area (6002 in this case) that has the words "Refer to ODSE" in it, but unforunately, the formula gives me a "0" even if there is a row that in the AD column has "Refer to ODSE" and has an A column value of "6002". I imagine it is because "Refer to ODSE" is a result of a formula, and not actual stand alone text?
This is the first cell and second cell in the AD column to give you an idea of what I am looking at:
AD8:
=IF(COUNTIF($W$6:$W$1000,W8)=1,"",IF(COUNTIF($W$6:W8,W8)>1,"Duplicate",""))& IF(W8>0,IF(ISNUMBER(MATCH(W8,ODSE!$D:$D,0))," Refer to ODSE"," "),"")
AD9:
=IF(COUNTIF($W$6:$W$1000,W9)=1,"",IF(COUNTIF($W$6:W9,W9)>1,"Duplicate",""))& IF(W9>0,IF(ISNUMBER(MATCH(W9,ODSE!$D:$D,0))," Refer to ODSE"," "),"")
and so on...
I am using CTRL ALT ENTER.
Any idea what I am doing wrong?