Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • What-If Analysis: Scenarios and Goal Seek in Excel
  • Use Data Form to input, edit and delete records in Excel
  • Example of COUNTIFS with variable table column in Excel
  • How To Create Pareto Chart in Excel
  • How to combine 2 or more chart types in a single chart in Excel

References

  • CHOOSE function: Description, Usage, Syntax, Examples and Explanation
  • Extract all partial matches in Excel
  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • How to get first column number in range in Excel
  • How to reference named range different sheet in Excel

Data Validations

  • Excel Data validation with conditional list
  • Excel Data validation must begin with
  • How To Create Drop-down List in Excel
  • Excel Data validation date in next 30 days
  • Excel Data validation exists in list

How to count keywords in a range of cell

by

To count the number of specific words or keywords that appear in a given cell, you can use a formula based on the SEARCH, ISNUMBER, and SUMPRODUCT functions.

 Formula

=SUMPRODUCT(--ISNUMBER(SEARCH(keywords,A1)))

Note: if a keyword appears more than once in a given cell, it will only be counted once. In other words, the formula only counts instances of different keywords.

Explanation

In the example shown, the formula in C5 is:

=SUMPRODUCT(--ISNUMBER(SEARCH(keywords,B5)))

where “keywords” is the named range E5:E9.

How this formula works

The core of this formula is the ISNUMBER + SEARCH approach to finding text in a cell, which is explained in more detail here. In this case, we are looking in each cell for all words in the named range “keywords” (E5:E9). We do this by passing the range into SEARCH as the find_text argument. Because we pass in an array of 5 items:

{"green";"orange";"white";"blue";"pink"}

we get an array of 5 items back as a result:

{#VALUE!;#VALUE!;1;#VALUE!;14}

Numbers correspond to matches, and the #VALUE! error means no match was found. In this case, because we don’t care where the text was found in the cell, we use ISNUMBER to convert the array into TRUE and FALSE values:

{FALSE;FALSE;TRUE;FALSE;TRUE}

And the double negative (–) to change these into 1s and zeros:

{0;0;1;0;1}

The SUMPRODUCT function then simply returns the sum of the array, 2 in this case.

Handling empty keywords

If the keyword range contains empty cells, the formula won’t work correctly, because the SEARCH function returns zero when looking for an empty string (“”). To filter any empty cells in the keyword range, you can use the variation below:

{=SUMPRODUCT(--ISNUMBER(SEARCH(IF(keywords<>"",keywords),B5)))}

Post navigation

Previous Post:

DECIMAL function: Description, Usage, Syntax, Examples and Explanation

Next Post:

AVERAGE function: Description, Usage, Syntax, Examples and Explanation

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • IF with boolean logic in Excel
  • IF, AND, OR and NOT Functions Examples in Excel
  • FALSE function: Description, Usage, Syntax, Examples and Explanation
  • Check multiple cells are equal in Excel

Date Time

  • Count day of week between dates in Excel
  • Get days between dates ignoring years in Excel
  • NOW function: Description, Usage, Syntax, Examples and Explanation
  • Count times in a specific range in Excel
  • Basic timesheet formula with breaks in Excel

Grouping

  • Running count group by n size in Excel
  • How to randomly assign data to groups in Excel
  • Group numbers with VLOOKUP in Excel
  • Map text to numbers in Excel
  • Group times into unequal buckets in Excel

General

  • Delete Blank Rows at Once in Excel
  • Subtotal by color in Excel
  • How to calculate percent of goal in Excel
  • 3D SUMIF for multiple worksheets in Excel
  • Count cells less than in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning