Imagine you create a feedback form using Google Forms or Microsoft Forms.
People fill it from their phone or laptop — typing comments, ratings, or short answers.
After everyone responds, you download the results.
And just like that, you get an Excel file with all the answers listed in rows and columns.
Some people wrote their full name, some wrote only initials, some typed “OK”, and a few left the form completely blank.
Now you want to know:
- How many people actually filled something?
- It doesn’t matter what they typed — a name, a number, a word, or even a small dash.
- You just want to count all the non-empty entries.
Counting them manually takes time and gets confusing:
“Is this empty?”
“Did I count this already?”
“Why is this cell just a dash?”
That’s where the COUNTA function helps.
In simple words:
COUNTA = counts every cell that is not empty.
If there is anything inside the cell, COUNTA counts it.
Simple. Clean. Accurate.
What Is the COUNTA Function?
The COUNTA function in Excel counts all non-empty cells, no matter what they contain.
COUNTA counts:
- text
- numbers
- dates
- symbols
- formulas
- error values
- even a single space or character
COUNTA does NOT count:
- truly empty cells
If the cell has something — anything — COUNTA will count it.
Syntax:
=COUNTA(value1, [value2], …)
Arguments:
- value1: First cell or range to check
- value2: (Optional) More cells or ranges
You can use:
- individual cells
- multiple ranges
- mixed values
Examples:
1. Simple COUNTA:
=COUNTA(“Apple”, 15, “”, ” “, 100)
Result → 4
Explanation:
“” (empty) → not counted
” ” (space) → counted
2. COUNTA with a Range:
Sample Data:

Formula:
=COUNTA(A1:A6)
Result: 4
(Aakash, Rahul, “—”, and 20)
3. COUNTA Counts Text, Numbers, Dates, Symbols:
If A1:A7 have mixed data:
=COUNTA(A1:A7)
Everything except blanks gets counted.
4. COUNTA vs COUNT:

=COUNT(10, “Rahul”, 25)
Result → 2
(only numbers)
=COUNTA(10, “Rahul”, 25)
Result → 3
(counts both text and numbers)
When Should You Use COUNTA?
Use COUNTA when you want to know how many cells are filled, regardless of what is inside.
Great for:
- counting filled responses in forms
- counting names in a list
- checking how many tasks are updated
- seeing how much data is complete
- counting product descriptions
- tracking attendance entries
If the cell is not empty, COUNTA will include it.
Related Functions (Quick Guide):
| Function | What It Counts | Best For |
| COUNT | Numbers only | Marks, sales, numeric values |
| COUNTA | Non-empty cells | Names, text, responses |
| COUNTBLANK | Empty cells | Missing entries |
| COUNTIF | One condition | EX: Count values > 100 |
| COUNTIFS | Multiple conditions | Filtered counting |
In Simple Words:
- COUNTA → counts everything except empty cells
- Perfect for forms, lists, and mixed data
- Fast, simple, and extremely useful
COUNTA helps you quickly check how much information you actually have — without manually counting anything.
Discover more from Excellopedia
Subscribe to get the latest posts sent to your email.