I have a formula in column F (see Below) that provides me with a "yes", "no" or "blank" cell. I am trying to get the average number of “Yes” responses (excluding blank cells) in column F - formatted as a percentage with no decimal places (50%).
I am using the COUNTIF formula (see below) however, it is including the blank cell because there is a formula in there. I tried this on cells with no formula and it worked perfectly.
I need it to exclude the blank cells even though there is a formula in those cells.
HELP!!!
Column F Formula:
=IF(AND(OR(G3="x"),E3<=3),"Yes",(IF(AND(OR(H3="x"),E3<=7),"Yes",(IF(AND(OR(I3="x"),E3<=20),"Yes",IF(AND(ISBLANK(G3),ISBLANK(H3),ISBLANK(I3)),"","No"))))))
COUNTIF Formula:
=COUNTIF(F3:F52,"Yes")/(ROWS(F3:F52)-COUNTIF(F3:F52, "<>"&"*"))
I am using the COUNTIF formula (see below) however, it is including the blank cell because there is a formula in there. I tried this on cells with no formula and it worked perfectly.
I need it to exclude the blank cells even though there is a formula in those cells.
HELP!!!
Column F Formula:
=IF(AND(OR(G3="x"),E3<=3),"Yes",(IF(AND(OR(H3="x"),E3<=7),"Yes",(IF(AND(OR(I3="x"),E3<=20),"Yes",IF(AND(ISBLANK(G3),ISBLANK(H3),ISBLANK(I3)),"","No"))))))
COUNTIF Formula:
=COUNTIF(F3:F52,"Yes")/(ROWS(F3:F52)-COUNTIF(F3:F52, "<>"&"*"))