Skip to main content

How to count the number of characters, letters and numbers in cell?

Author: Sun Last Modified: 2024-11-12

When you type a list of data in a cell in Excel as shown as below screenshot, you want to count the total number of all characters, or only the number of the letters, or only the numbers in the cell. Now, I talk about the methods on this count in Excel.


Count amount of characters with LEN function

If you want to count the total number of all characters, including numbers, letters and other marks in each cell, do it as follow:

1. Type this formula =LEN(A1) (the Cell A1 indicates the cell you want to count the total characters) into a blank cell, for example, the Cell B1, and click Enter button on the keyboard, and the total number of characters in Cell A1 has been counted. See screenshot:
count number of characters with LEN function

2. Drag the fill handle to apply this formula to the range cells, and the number of characters in each cell of the list have been counted. See screenshot:
drag the formula to other cells

a screenshot of kutools for excel ai

Unlock Excel Magic with Kutools AI

  • Smart Execution: Perform cell operations, analyze data, and create charts—all driven by simple commands.
  • Custom Formulas: Generate tailored formulas to streamline your workflows.
  • VBA Coding: Write and implement VBA code effortlessly.
  • Formula Interpretation: Understand complex formulas with ease.
  • Text Translation: Break language barriers within your spreadsheets.
Enhance your Excel capabilities with AI-powered tools. Download Now and experience efficiency like never before!

Count amount of all characters except numbers with LEN function

If you only want to the amount of letters excluding numbers in each cell, you can do as follow:

Select a blank cell, for example, the Cell B1, type this formula

=LEN(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,0,""),1,""),2,""),3,""),4,""),5,""),6,""),7,""),8,""),9,""))

(the Cell A1 indicates the cell you want to count amount of letters except numbers, you can change it as you need), then press Enter and drag the fill handle to fill the range you want to use this formula. See screenshot:
Count number of all characters except numbers


Count amount of only numbers with LEN function

Select a blank cell, for example, the Cell B1, type this formula =SUM(LEN(A1)-LEN(SUBSTITUTE(A1,{1,2,3,4,5,6,7,8,9,0},))) (the Cell A1 indicates the cell you want to count only amount of numbers, you can change it as you need), then press Enter and drag the fill handle to fill the range you want to use this formula. See screenshot:
 Count number of only numbers


Count amount of letters and numbers with function

With this function, you not only can know how many letters or numbers in the string of the cell, but also know the orders of the letters and numbers.

1. Hold ALT button and press F11 on the keyboard to open a Microsoft Visual Basic for Application window.

2. Click Insert > Module, and copy the VBA into the module.

VBA: Count amount of letters and numbers with function

Function AlphaNumeric(pInput As String) As String
'Updateby20140303
Dim xRegex As Object
Dim xMc As Object
Dim xM As Object
Dim xOut As String
Set xRegex = CreateObject("vbscript.regexp")
xRegex.Global = True
xRegex.ignorecase = True
xRegex.Pattern = "[^\w]"
AlphaNumeric = ""
If Not xRegex.test(pInput) Then
    xRegex.Pattern = "(\d+|[a-z]+)"
    Set xMc = xRegex.Execute(pInput)
    For Each xM In xMc
        xOut = xOut & (xM.Length & IIf(IsNumeric(xM), "N", "L"))
    Next
    AlphaNumeric = xOut
End If
End Function

3. Save the code and close the window, and type this formula =AlphaNumeric(A1) ( the Cell A1 indicates the cell you want to count, you can change it as you need) into a blank cell, then press Enter and drag the fill handle to fill the range you want to use this formula. See screenshot:
enter a formula to count number of letters and numbers

Tip:

(1) The "L" indicates letter and "N" indicates number.

(2) This function does not work with cells containing special marks, such as !, @, #, $, %, ^, &, etc.


Count the number of a specific character with COUNTCHAR function

If you want to count the number of a specific character in a string, for example, in the string “I want to count the number of a specific in a string”, I want to count the number of character “n”, how can you do?

In this case, I introduce Kutools for Excel’s COUNTCHAR function for you.

Kutools for Excel offers over 300 advanced features to streamline complex tasks, boosting creativity and efficiency. Itegarate with AI capabilities, Kutools automates tasks with precision, making data management effortless. Detailed information of Kutools for Excel...         Free trial...

After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)

1. Type the character you want to count in a cell, see screenshot:
type the character to count

2. Then select a blank cell to put the result and select a blank cell which will put the counting result, and click Kutools > Kutools Functions > Statistical & Math > COUNTCHAR. See screenshot:
click COUNTCHAR feature of kutools

3. Then in the popping Function Arguments dialog, select the string into Within_text box, and select the character cell into the Find_text box. Then you can see the counting result appears in the dialog.
specify the cell references in the dialog box

4. Click OK, now the result is put in the cell you select.

get the result by kutools

In Kutools Functions, you can count data by background or font color, you can sum values by same background or font color, you can convert time to decimal hours/minute/seconds and so on.

  Count the times of a specific character appears in a string

 

Relative Articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more
Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!