Count fowmula that will look for multiple words

  • Thread starter Thread starter japc90
  • Start date Start date
J

japc90

I want to type a formula that will look at a range of cells and
count
1 each time it finds any of a list of words. So if my range of cells
is
A1:A50 and the word "math" is in cells A2 and A4 and the word
"science" is in cells A5 and A10 it would bring back a count of 4.

All help is greatly appreciated.
 
Sounds like you may need more but try this for starters
=COUNTIF(A1:A50,"math")+COUNTIF(A1:A50,"science")

HTH
Martin
 
Hi

Say your list of words is in B1:B10 then you could use:

=SUM(COUNTIF(A1:A50,"*"&B1:B10&"*"))

Confirmed with Ctrl+Shift+Enter

Richard
 

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

Similar Threads

Counting Specific Text 2
counting 3
Real-time sorting 11
Count of visible, non-blank cells only? 8
Complex SUMIF/COUNT IF 5
grouping with vba 1
Variable reference to add cells 4
Average Formula 1

Back
Top