Site icon ExcelNotes

How to Count Cells that are a Text String (Case Sensitive)

Please check here if you want to count the number of cells based on the text that is part of the cell. The following formula is to count the number of cells with the text string for full text in the cells and case sensitive.

Example: You are working with a worksheet with the employee's name in column A, the position in column B, and the employees' salaries in column C.

Formula: How many cells are with case-sensitive Leo?

=SUMPRODUCT(–EXACT("Leo", A2:A12))
=SUMPRODUCT((EXACT("Leo", A2:A12))*1)

In the example, eight people have the name "Leo". However, only two are "Leo" with case-sensitive (A3 and A5).

The formula does not count "leo" and "LeO" because they are not the same as "Leo". To get the count of cells that are not case-sensitive, please check here.

Notes: The SUMPRODUCT function

The SUMPRODUCT function adds all the multiplication results for all arrays.

Formula:

=SUMPRODUCT(array1, [array2], …)

Explanations:

– Array1 is required; the first array is to multiply and then add.
– Array2 is optional; the second array is to multiply and then add.

Exit mobile version