Count number of rows with specific text

R

Rock

I am using this formula to count the number of rows in Column C with text.

=SUMPRODUCT(((LEN(C4:C500)=4)+0)*(ISTEXT(C4:C500)))

I need, instead, for this formula to count the number of rows in Column C
with specific text i.e. the text “PUSHâ€. Can you help?
 
D

Dave Peterson

=countif(c:c,"push")
will count the number of cells in column C that have push in them.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top