Looking for a Function which counts the repeatition of text in a column

  • Thread starter Thread starter shirish
  • Start date Start date
S

shirish

Hi Group,

I am looking for a function which will count occurence of part of text
in a cell in one column.

For example cell contains My finance loans and the columns conatins
many combination of loans I want to count how many times the "loans"
string occurs

Note: Without using data filter option.

Thanks
Shirish
 
Try...

=COUNTIF(A1:A10,"*loans*")

or

=COUNTIF(A1:A10,"*"&B1&"*")

....where B1 contains the criteria, such as 'loans'.

Hope this helps!
 

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