In Excel: use =LEN(A2) for characters including spaces, =LEN(SUBSTITUTE(A2," ","")) to exclude spaces, and =LEN(TRIM(A2))-LEN(SUBSTITUTE(A2," ",""))+1 to count words.
On this page7
27 without spaces
What this does
LEN returns the number of characters in a cell, counting spaces and punctuation. Excel has no WORDCOUNT function, so words are counted indirectly: remove every space with SUBSTITUTE, subtract the shortened length from the original, and the difference is the number of spaces — one fewer than the number of words. TRIM first, or double spaces inflate the count. To count one specific character, the same subtraction works on that character instead of a space. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “excel number of characters” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a text operation that turns messy entries into clean, usable data into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
A2 holds "Quarterly sales report". =LEN(A2) returns 22. Without spaces: =LEN(SUBSTITUTE(A2," ","")) returns 20. Word count: =LEN(TRIM(A2))-LEN(SUBSTITUTE(TRIM(A2)," ",""))+1 returns 3. To count how many commas are in A2: =LEN(A2)-LEN(SUBSTITUTE(A2,",","")). To total characters down a whole column: =SUMPRODUCT(LEN(A2:A100)). Character limits are everywhere — SMS fields, meta descriptions, import columns with a fixed width — and LEN is how you check a column against one before the upload fails. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Here is the takeaway for “excel number of characters”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
Common mistakes
- Expecting a WORDCOUNT function — Excel has none; the
SUBSTITUTEsubtraction is the standard idiom. - Counting words without
TRIM, so two spaces between words inflate the result by one each time. - Forgetting that LEN counts trailing spaces, which is why a cell that looks 5 characters long reports 6.
- Running the word formula on an empty cell, which returns 1 instead of 0.
- Using LEN on a number and being surprised by the count — it measures the underlying value, not the formatted display.
Frequently asked questions
How do I count characters in Excel?
=LEN(A2) returns the character count including spaces. Use =LEN(SUBSTITUTE(A2," ","")) to exclude them.
How do I count words in a cell?
=LEN(TRIM(A2))-LEN(SUBSTITUTE(TRIM(A2)," ",""))+1. It counts the spaces and adds one; TRIM stops double spaces from inflating the total.
How do I count one specific character?
Subtract the length without it: =LEN(A2)-LEN(SUBSTITUTE(A2,"x","")) counts how many times "x" appears. SUBSTITUTE is case-sensitive.
How do I count characters in a whole column?
=SUMPRODUCT(LEN(A2:A100)) totals the character count across the range in a single formula.
Other ways people ask this
This is also commonly searched as “excel number characters” and “excel character number”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “excel number characters”, “excel character number” all point at the one operation explained on this page, which is why they all lead here.