Count Text

  • Thread starter Thread starter Jim Higgins
  • Start date Start date
J

Jim Higgins

Does Excel XP have a function to count instances of specific letter
combinations (acronyms) in a given row or column?

--
Remove first letter left of dot to reply

"A democracy is a sheep and two wolves deciding on what to have for
lunch. Freedom is a well armed sheep contesting the results of the
decision."
Benjamin Franklin
 
Yes,

try

=COUNTIF(B2:B20,"*jim*")

if there might be multiple strings in the same cell

=SUMPRODUCT((LEN(B2:B20)-LEN(SUBSTITUTE(B2:B20,"jim","")))/LEN("jim"))
 
Jim

=COUNTIF(A:A,"*abc*")

=COUNTIF(1:1,"*abc*")

Gord Dibben Excel MVP
 

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