Google Sheets Formulas
Recommended Readings
Item
Links
Documentation / Tutorials
Counting
// where $A:$A is your desiredrange
// if cell contains specific word
= countif($A:$A,"*_ALT*") // cannot be done with an arrayformula
// errors
=countif($A:$A,ISERROR())
// loading https://www.reddit.com/r/googlesheets/comments/aplwa6/importxml_loading/
=COUNTIF(ARRAYFORMULA(ISERR(A1:A1000)),true)
=TEXT(COUNTIF(ARRAYFORMULA(ISERR(A1:A1000)),false)/1000,"0%")
// whitespace
=COUNTA(SPLIT(A1, " "))
// count containing based on cell
=countif(A:A,"*"&A2&"*")Misc
REGEX
Conditional formatting
Searching for errors
Comparing two columns
Last updated
Was this helpful?