Google Sheets count how many cells contain a specific word / words? -


i'm trying @ cells in set of columns/cells count how many of them contain word wordhere (in example)

i've tried using:

=sum(countif(a1:a100, "wordhere")) 

however finds 0 cell contains other words/letters/numbers, if cell contains wordhere works perfectly.

i've tried using several regeexxtract , regexmatch including actual word can see below:

=sum(countif(a1:a100,regexextract(a1:a100, "wordhere"))) 

but again, finds 0 matches.

what doing wrong?

so not answering doing wrong, here can do:

=sum(countif(a1:a100, "*wordhere*")) 

Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -