Counting comments

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report where one of the columns is "Comments". Let say one of them
says : This part is unavailable. The report is really big and so are the
range of comments. What I need is a formula that calculates for example how
many of the comments have the word unavailable. I tried VLOOKUP, IF, COUNTIF,
but they don't seem to work (as far as I know). Please help
 
I have a report where one of the columns is "Comments". Let say one of them
says : This part is unavailable. The report is really big and so are the
range of comments. What I need is a formula that calculates for example how
many of the comments have the word unavailable. I tried VLOOKUP, IF, COUNTIF,
but they don't seem to work (as far as I know). Please help

Use asterisk (*) in COUNTIF. Let's say coments are in range C1:C25,
formula:

=COUNTIF(C1:C25;"*unavailable*")

will return number of coments which contains word "unavailable".
Maybe you will must to change argument separator, because in my local
setings it is ";"
 

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

Back
Top