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

Data Analysis

  • How to create a Histogram in Excel
  • Chart Axes in Excel
  • Randomize/ Shuffle List in Excel
  • How To Perform and Interpret Regression Analysis in Excel
  • Add Outline to Data in Excel

References

  • How to use Excel MMULT Function
  • Multi-criteria lookup and transpose in Excel
  • How to use Excel ROW Function
  • How to get last row in mixed data with blanks in Excel
  • Get nth match with INDEX / MATCH in Excel

Data Validations

  • Excel Data validation specific characters only
  • Data validation must not exist in list
  • Excel Data validation must contain specific text
  • Excel Data validation must begin with
  • How To Create Drop-down List in Excel

Count cells that contain text in Excel

by

This tutorial shows how to Count cells that contain text in Excel using the example below;

Formula

=COUNTIF(range,"*")

Explanation

To count the number of cells that contain text (i.e. not numbers, not errors, not blank), use the COUNTIF function and a wildcard.

“*” is a wildcard matching any number of characters.

Do you want to count cells that contain specific text? See this formula instead.

In the example, the active cell contains this formula:

=COUNTIF(B4:B8,"*")

How this formula works

COUNTIF counts the number of cells that match the supplied criteria. In this case, the criteria is supplied as the wildcard character “*” which matches any number of text characters.

A few notes:

  • The logical values TRUE and FALSE are not counted as text
  • Numbers are not counted by “*” unless they are entered as text
  • A blank cell that begins with an apostrophe (‘) will be counted.

COUNTIFS solution

If you need to restrict counts to meet more specific criteria, you can switch to the COUNTIFs function. For example, to count cells with text, but exclude cells with only a space character, you could use:

=COUNTIFS(range,"*",range,"<> ")

SUMPRODUCT solution

You can also use SUMPRODUCT to count text values along with the function ISTEXT like so:

=SUMPRODUCT(--ISTEXT(range))

The double hyphen (called a double unary) coerces the result of ISTEXT from a logical value of TRUE or FALSE, to 1’s and 0’s. SUMPRODUCT then returns the sum of ones and zeros.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

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

  • OR function Examples in Excel
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • Extract multiple matches into separate rows in Excel
  • Invoice status with nested if in Excel
  • How to use Excel XOR Function

Date Time

  • Get day name from date in Excel
  • How to calculate quarter from date in Excel
  • HOUR function: Description, Usage, Syntax, Examples and Explanation
  • How to get year from date in Excel
  • Check If Two Dates are same month in Excel

Grouping

  • Group times into unequal buckets in Excel
  • Calculate conditional mode with criteria in Excel
  • Group arbitrary text values in Excel
  • Map text to numbers in Excel
  • Group numbers at uneven intervals in Excel

General

  • How to generate random date between two dates in Excel
  • Basic error trapping example in Excel
  • How to count total number of cells in a rectangular range in Excel
  • Count cells less than in Excel
  • How to create dynamic worksheet reference in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning