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

Data Analysis

  • How to conditionally sum numeric data in an Excel table using SUMIFS
  • How to count table rows in Excel
  • Error Bars in Excel
  • Get column index in Excel Table
  • Excel Frequency Function Example

References

  • Basic INDEX MATCH approximate in Excel
  • Multi-criteria lookup and transpose in Excel
  • How to get first row number in range in Excel
  • How to get last row in text data in Excel
  • How to use Excel MATCH Function

Data Validations

  • Excel Data validation don’t exceed total
  • Prevent invalid data entering in specific cells
  • Excel Data validation with conditional list
  • Data validation must not exist in list
  • Excel Data validation no punctuation

How to count specific characters in a cell in Excel

by

To count how many times a specific character appears in a cell, you can use a formula based on the SUBSTITUTE and LEN functions.

Formula

=LEN(A1)-LEN(SUBSTITUTE(A1,"a",""))

Explanation

 

In the example, the active cell contains this formula:

=LEN(B3)-LEN(SUBSTITUTE(B3,C3,""))

How this formula works

This formula works by using SUBSTITUTE to first remove all of the characters being counted in the source text. Then the length of the text (with the character removed) is subtracted from the length of the original text. The result is the number of characters that were removed with SUBSTITUTE, which is equal to the count of those characters.

Upper and lower case

SUBSTITUTE is a case sensitive function, so it will match case when running a substitution. If you need to count both upper and lower case occurrences of a specific character, use the UPPER function inside SUBSTITUTE to convert the text to uppercase before running the substitution. Then supply an uppercase character as the text that’s being substituted like this:

=LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),"A",""))

Post navigation

Next Post:

Create One-dimensional and Two-dimensional Array

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

  • How to use Excel AND Function
  • Not Equal To ‘<>‘ operator in Excel
  • IF, AND, OR and NOT Functions Examples in Excel
  • OR function: Description, Usage, Syntax, Examples and Explanation
  • AND function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • How to calculate nth day of week in month in Excel
  • How to calculate Next working/business day in Excel
  • Sum through n months in Excel
  • How to get number of days, weeks, months or years between two dates in Excel
  • Convert date string to date time in Excel

Grouping

  • Map inputs to arbitrary values in Excel
  • Group times into 3 hour buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Categorize text with keywords in Excel
  • Calculate conditional mode with criteria in Excel

General

  • Check if multiple cells have same value in Excel
  • Flash Fill in Excel
  • How to calculate percent of goal in Excel
  • Count cells that do not contain many strings in Excel
  • How to get original price from percentage discount in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning