Forum Discussion
KattSwann
Apr 27, 2020Copper Contributor
Counting "Pass" in a row in
How do I write a formula that can count how many times the word "Pass" comes up in a row of data? Thanks in advance.
- Apr 27, 2020=COUNTIF(1:1,"Pass")
The above formula will count all cells with a value of "Pass" in row 1 of the sheet.
Zack Barresse
Apr 27, 2020Iron Contributor
=COUNTIF(1:1,"Pass")
The above formula will count all cells with a value of "Pass" in row 1 of the sheet.
The above formula will count all cells with a value of "Pass" in row 1 of the sheet.
KattSwann
Apr 27, 2020Copper Contributor
Thank you! Zack Barresse