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.
Post History
=(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". LE...
#1: Initial revision
=(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.
