Forum Discussion
Anonymous
7 years agoNot applicable
Calculate Passrate (CountIf)
Hello everyone, I looked around at what's already asked, but it doesn't really work for me. =COUNTIF([column1],">84.99")/COUNTIF([column1],"*") The above is my Excel formula, and what I'm trying...
Anonymous
7 years agoNot applicable
Hi
You should use a combination of CALCULATE, COUNT & FILTER, as below:
CALCULATE( COUNTROWS(evaluations), FILTER(evaluations, [column1] > 84.99) ) / COUNTROWS(evaluations)
Hope that helps
Anonymous
7 years agoNot applicable
Thanks! The data is slightly different than before, so let me double check before I mark it as a solution haha.