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

Data Analysis

  • Excel Line Chart
  • Conditional Formatting New Rule with Formulas in Excel
  • Remove Duplicates Example in Excel
  • How to calculate average last N values in a table in Excel
  • How to create running total in an Excel Table

References

  • Convert text string to valid reference in Excel using Indirect function
  • Left Lookup in Excel
  • Basic INDEX MATCH approximate in Excel
  • Perform case-sensitive Lookup in Excel
  • Merge tables with VLOOKUP in Excel

Data Validations

  • Excel Data validation require unique number
  • Excel Data validation allow uppercase only
  • Excel Data validation date in specific year
  • Excel Data validation specific characters only
  • Excel Data validation must contain specific text

Count cells over 100 characters in Excel

by

This tutorial shows how to Count cells over 100 characters in Excel using the example below;

Formula

=SUMPRODUCT(N(LEN(range)>100))

Explanation

To count cells that contain more than a certain number of characters you can use a formula based on the SUMPRODUCT, LEN, and N functions. In the example shown, the formula in C2 is:

=SUMPRODUCT(N(LEN(B5:B11)>100))

How this formula works

Working from the inside out, the LEN function runs on the range B5:B11. Because we give LEN multiple values, it returns multiple results in an array like this:

{127;78;43;112;59;72;154}

Which is evaluated against the logical expression >100. This results in an array of TRUE FALSE values:

{TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;TRUE}

The N function then converts these values to ones and zeros:

{1;0;0;1;0;0;1}

Finally, the array is processed by SUMPRODUCT, which returns 3:

=SUMPRODUCT({1;0;0;1;0;0;1})

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

  • IF with wildcards in Excel
  • How to use Excel AND Function
  • AND function: Description, Usage, Syntax, Examples and Explanation
  • FALSE function: Description, Usage, Syntax, Examples and Explanation
  • IFS function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • How to Calculate Age in Excel
  • TODAY function: Description, Usage, Syntax, Examples and Explanation
  • Add workdays no weekends in Excel
  • Get date from day number in Excel
  • Convert text date dd/mm/yy to mm/dd/yy in Excel

Grouping

  • Group arbitrary text values in Excel
  • Group numbers with VLOOKUP in Excel
  • Group times into unequal buckets in Excel
  • Group times into 3 hour buckets in Excel
  • Calculate conditional mode with criteria in Excel

General

  • Find, Trace and Correct Errors in Excel Formulas using ‘Formula Auditing’
  • How to create dynamic named range with INDEX in Excel
  • Convert column letter to number in Excel
  • AutoFit Column Width, AutoFit Row Height in Excel
  • Advanced Number Formats in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning