Forum Discussion

Edg38426's avatar
Edg38426
Brass Contributor
Dec 23, 2021
Solved

How to ignore formulas that return blank cells in COUNTIF

I have a worksheet (worksheet "A") where one column is pulling dates using a VLOOKUP formula from another worksheet (worksheet "B"). On another worksheet (worksheet "C"), I am trying to count the cel...
  • HansVogelaar's avatar
    Dec 23, 2021

    Edg38426 

    Try

     

    =COUNTIFS(Table2[Spec/ Build],"*spec*",Table2[Permit Rcvd],">0",Table2[P.O. Release],">0",Table2[GL],"0")

     

    or

     

    =SUMPRODUCT(ISNUMBER(SEARCH("spec",Table2[Spec/ Build]))*(Table2[Permit Rcvd]<>"")*(Table2[P.O. Release]<>"")*(Table2[GL]=0))

Resources