Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=COUNTIF(A2:A6,"*apple*")Computed by a real spreadsheet engine on the sample data below.
| Product |
| Green Apple |
| Pineapple Juice |
| Banana |
| Apple Cider |
| Mango Smoothie |
=COUNTIF(A2:A6,"*apple*")→3
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.
Use the wildcard approach: =COUNTIF(A2:A6,"*5*") counts cells containing the digit 5 anywhere. COUNTIF converts numbers to text for wildcard matching.
Use =SUMPRODUCT((ISNUMBER(FIND("apple",A2:A6)))*1). FIND is case-sensitive while SEARCH is not.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: