Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Comments on Count the number of occurrences in a text string
Parent
Count the number of occurrences in a text string
If I have some text in a cell, how can I find the number of times another piece of text appears in it?
For example, suppose A1 contains Peter Piper picked a peck of pickled peppers.. pick occurs 2 times in this string. What formula can I put in A2 so that it counts the occurrences of pick and returns 2?
Post
=(LEN(A1)-LEN(SUBSTITUTE(A1,"pick","")))/LEN("pick")
-
LEN(A1) gives the total number of characters in the original text.
-
SUBSTITUTE(A1,"pick","") removes all occurrences of "pick".
-
LEN(...) on that result gives the new length.
-
The difference between the two lengths is the total characters removed.
-
Dividing by LEN("pick") converts that into the number of times "pick" appears.

2 comment threads