How to use the COUNTA function
What is the COUNTA function?
The COUNTA function counts the non-empty or non-blank cells in a cell reference.
Table of Contents
- COUNTA function Syntax
- COUNTA function Arguments
- COUNTA function example
- Count non-empty values in an array
- Count non-empty values based on a condition
- Count non-empty values based on a list
- Count non-empty values in a string
- Count non-empty cells in multiple cell ranges
- Count non-empty cells per row
- Sort rows based on the number of non-empty cells
- Count non-empty cells per column
- Sort columns based on the number of non-empty cells
- Get Excel *.xlsx file
1. COUNTA Function Syntax
COUNTA(value1, [value2], ...)
2. COUNTA Function Arguments
value1 | Required. A cell reference to a range for which you want to count not empty values. |
[value2] | Optional. Up to 254 additional arguments like the one above. |
The COUNTA function counts errors as not empty.
3. COUNTA Function Example
The picture above demonstrates the COUNTA function which counts non-empty or non-blank cells. Cell range C3:C10 contains data and some formulas, cell range D3:D10 shows the formulas in the corresponding cells on the same row. For example, cell D3 shows this formula: ="". It means that cell C3 contains this formula. If the cell in D3:D10 is empty the corresponding cell in C3:C10 contains a non-formula value.
This setup is to show how the COUNTA function handles text, numbers, boolean values, formulas and blank cells. The gray numbers in column B shows which values are evaluated as non-blank cells and as you can see only cell C6 is truly blank.
- Cell C3 contains a text value "A", this is a non-blank value hence the gray count in cell B3.
- Cell C4 contains a formula that returns nothing (blank), however, the COUNTA function considers this as a non-empty cell probably because it contains a formula.
- Cell C5 contains number 44. This is a non-empty value.
- Cell C6 is a blank empty cell. The COUNTA function doesnt count this cell, it counts only non-empty cells.
- Cell C7 contains a space character, the cell looks empty but is not. This cell is counted.
- Cell C8 contains a bollean value TRUE. This cell is counted.
- Cell C9 contains an Excel error. This cell is counted.
- Cell C10 contains a text string "Text". This cell is counted.
Formula in cell F3:
Cell range C3:C10 contains 8 cells, however, only one cell is truly empty. The COUNTA function returns 7 (8-1). I hope this demonstration shows how the COUNTA function handles different cells based on the content.
4. Count non-empty values in an array
This demonstrates that if you hardcode values in an COUNTA function, make sure you don't use empty values. The array containing hard-coded values are: {"A";;"";44;0;" ";TRUE;#DIV/0!;"Text"}. The semicolon is a delimiting character that separates values by row. If nothing exist between two semicolon like this: ;; then Excel shows an ugly dialog box telling you there is a typo with this formula.
This means that you can't use arrays with empty values, in other words, the COUNTA function is worthless for counting non-empty values because you can't have empty values in an hard-coded array.
Formula in cell B3:
The formula above does not work, however, the formula below works.
The COUNTA function works if all containers in the array are non-empty, which makes this function useless for hard-coded arrays.
Formula in cell B3:
An empty container like this "" is not considered empty which is surprising. The following formula counts non empty values in a hard-coded array.
Explaining formula
Step 1 - Replace errors with a text value
The IFERROR function catches most errors in Excel formulas.
IFERROR(value, value_if_error)
IFERROR({"A";"";44;0;" ";TRUE;#DIV/0!;"Text"},"A")
returns
{"A"; ""; 44; 0; " "; TRUE; "A"; "Text"}
Step 2 - Check if not empty
The less than and the larger than characters combined lets you test if a value is not equal to another value. The result is either TRUE or FALSE.
(IFERROR({"A";"";44;0;" ";TRUE;#DIV/0!;"Text"},"A")<>""
becomes
{"A"; ""; 44; 0; " "; TRUE; "A"; "Text"}<>""
and returns
{TRUE; FALSE; TRUE; TRUE; TRUE; TRUE; TRUE; TRUE}.
Step 3 - Convert boolean values to the numerical equivalents
This step is need in order to calculate a sum, the SUMPRODUCT function in the next step can't work with boolean values, however, their numerical equivalents work fine.
(IFERROR({"A";"";44;0;" ";TRUE;#DIV/0!;"Text"},"A")<>"")*1
becomes
{TRUE; FALSE; TRUE; TRUE; TRUE; TRUE; TRUE; TRUE}*1
returns
{1; 0; 1; 1; 1; 1; 1; 1}.
Step 4 - Calculate a total
The SUMPRODUCT function calculates the product of corresponding values and then returns the sum of each multiplication.
SUMPRODUCT(array1, [array2], ...)
SUMPRODUCT((IFERROR({"A";"";44;0;" ";TRUE;#DIV/0!;"Text"},"A")<>"")*1)
becomes
SUMPRODUCT({1; 0; 1; 1; 1; 1; 1; 1})
and returns 8.
5. Count non-empty values based on a condition
This example demonstrates how to count non-blank cells based on a condition applied to an adjacent column. The image above shows the condition in cell E3, cell range B3:B11 contains the values and the corresponding values in cell range C3:C11 contain numbers and some blank cells.
Formula in cell F3:
The formula in cell F3 matches the condition to B3:B11 and the corresponding matching cells are C5, C10 and C11. Cells C5 and C11 contain numbers, however, cell C10 is blank. The formula returns 2, there are two nonempty cells based on the given condition.
Explaining formula
The "Evaluate" tool on tab "Formula" on the ribbon lets you examine formulas in greater detail. It lets you see the calculation step by step making it much easier to understand and troubleshoot formulas.
Step 1 - Logical expression
The equal sign lets you compare value to value, it can also be used to compare a single value to multiple different values. The result is a boolean value, it is either TRUE or FALSE.
B3:B11=E3
becomes
{"Pen"; "Pencil"; "Clip"; "Pen"; "Clip"; "Pencil"; "Pen"; "Clip"; "Clip"}="Clip"
and returns
{FALSE; FALSE; TRUE; FALSE; TRUE; FALSE; FALSE; TRUE; TRUE}.
Step 2 - Check if not empty (non-empty)
The less than sign and the larger than sign combined lets you check if a value is NOT equal to another value. We are comparing nothing in this example to multiple cells, there is nothing between the double quotes "". The result is a boolean value, it is either TRUE or FALSE or in this case an array containing boolean values.
C3:C11<>""
becomes
{""; 7; 45; 31; ""; 37; 98; ""; 6}<>""
and returns
{FALSE; TRUE; TRUE; TRUE; FALSE; TRUE; TRUE; FALSE; TRUE}
Step 3 - Evaluate IF function
The IF function returns one value if the logical test is TRUE and another value if the logical test is FALSE.
IF(logical_test, [value_if_true], [value_if_false])
IF(B3:B11=E3,C3:C11<>"",0)
becomes
IF({FALSE; FALSE; TRUE; FALSE; TRUE; FALSE; FALSE; TRUE; TRUE},C3:C11<>"",0)
becomes
IF({FALSE; FALSE; TRUE; FALSE; TRUE; FALSE; FALSE; TRUE; TRUE},{FALSE; TRUE; TRUE; TRUE; FALSE; TRUE; TRUE; FALSE; TRUE},0)
and returns
{0; 0; TRUE; 0; FALSE; 0; 0; FALSE; TRUE}
Step 4 - Convert boolean values
The SUM function can't calculate a total using boolean values, we need to convert the boolean values to their numerical equivalents.
TRUE - 1
FALSE - 0 (zero)
The asterisk lets you multiply numbers and boolean values in an Excel formula.
IF(B3:B11=E3,C3:C11<>"",0)*1
becomes
{0; 0; TRUE; 0; FALSE; 0; 0; FALSE; TRUE}*1
and returns
{0; 0; 1; 0; 0; 0; 0; 0; 1}. All values in the array are now either 1 or 0 (zero).
Step 5 - Calculate a total
The SUM function adds values and returns a total.
SUM(number1, [number2], ...)
SUM(IF(B3:B11=E3,C3:C11<>"",0)*1)
becomes
SUM({0; 0; 1; 0; 0; 0; 0; 0; 1})
and returns 2.
6. Count non-empty values based on a list
This example shows how to count non-empty cells based on multiple conditions, the conditions are specified in cell E3:E4. The formula counts non-empty cells if they are on the same row as at least one of the conditions.
Formula in cell F3:
The image above shows the criteria in cell E3 and E4, the matching cells in cell range B3:B11 are B3, B5, B6, B7, B9, B10 and B11. The corresponding cells on the same row in column C have four non-empty cells. They are C5, C6, C9, and C11.
Explaining formula
Step 1 - Which values equal any item in the list
The COUNTIF function counts the number of cells that meet a given condition.
COUNTIF(range, criteria)
COUNTIF(E3:E4, B3:B11)
becomes
COUNTIF({"Clip"; "Pen"}, {"Pen"; "Pencil"; "Clip"; "Pen"; "Clip"; "Pencil"; "Pen"; "Clip"; "Clip"})
and returns
{1; 0; 1; 1; 1; 0; 1; 1; 1}.
Step 2 - Check if not empty (non-empty)
The less than sign and the larger than sign combined lets you check if a value is NOT equal to another value. This example checks if the values are empty.
C3:C11<>""
becomes
{""; 7; 45; 31; ""; 37; 98; ""; 6}<>""
and returns
{FALSE; TRUE; TRUE; TRUE; FALSE; TRUE; TRUE; FALSE; TRUE}.
Step 3 - Evaluate IF function
The IF function returns one value if the logical test is TRUE and another value if the logical test is FALSE.
IF(logical_test, [value_if_true], [value_if_false])
IF(COUNTIF(E3:E4, B3:B11), C3:C11<>"", 0)
becomes
IF({1; 0; 1; 1; 1; 0; 1; 1; 1}, {FALSE; TRUE; TRUE; TRUE; FALSE; TRUE; TRUE; FALSE; TRUE}, 0)
and returns
{FALSE; 0; TRUE; TRUE; FALSE; 0; TRUE; FALSE; TRUE}.
Step 4 - Convert boolean values
The SUM function can't calculate a total using boolean values, we need to convert the boolean values to their numerical equivalents.
TRUE - 1
FALSE - 0 (zero)
The asterisk lets you multiply numbers and boolean values in an Excel formula.
IF(B3:B11=E3,C3:C11<>"",0)*1
becomes
{FALSE; 0; TRUE; TRUE; FALSE; 0; TRUE; FALSE; TRUE}*1
and returns
{0; 0; 1; 1; 0; 0; 1; 0; 1}.
Step 5 - Calculate a total
The SUM function adds values and returns a total.
SUM(number1, [number2], ...)
SUM(IF(B3:B11=E3,C3:C11<>"",0)*1)
becomes
SUM({0; 0; 1; 1; 0; 0; 1; 0; 1})
and returns 4.
7. Count non-empty values in a string
This example demonstrates how to count non-blank values in an array created from a string of delimited values using the TEXTSPLIT function. The image above shows a string in cell B3 containing the delimiting value |.
Excel 365 dynamic array formula in cell D3:
The formula in cell D3 splits the string in cell B3 based on the delimiting character |.
|7|45|31||37|98||6 returns the following values: 7, 45, 31, "",37,98,"", and 6. It is now clear that the string contains two empty array containers "".
Explaining formula
Step 1 - Split values
The TEXTSPLIT function lets you split a string into an array across columns and rows based on delimiting characters.
TEXTSPLIT(Input_Text, col_delimiter, [row_delimiter], [Ignore_Empty])
TEXTSPLIT(C3,";")
becomes
TEXTSPLIT("|7|45|31||37|98||6","|")
and returns
{"", "7", "45", "31", "", "37", "98", "", "6"}.
Step 2 - Check if values in array are not empty
The less than sign and the larger than sign combined lets you check if a value is NOT equal to another value. This example checks if the values are empty.
TEXTSPLIT(C3,";")<>""
becomes
{"", "7", "45", "31", "", "37", "98", "", "6"}<>""
and returns
{FALSE, TRUE, TRUE, TRUE, FALSE, TRUE, TRUE, FALSE, TRUE}.
Step 3 - Convert boolean values
The SUM function can't calculate a total using boolean values, we need to convert the boolean values to their numerical equivalents.
TRUE - 1
FALSE - 0 (zero)
The asterisk lets you multiply numbers and boolean values in an Excel formula.
(TEXTSPLIT(C3,";")<>"")*1
becomes
{FALSE, TRUE, TRUE, TRUE, FALSE, TRUE, TRUE, FALSE, TRUE}*1
and returns
{0, 1, 1, 1, 0, 1, 1, 0, 1}
Step 4 - Add numbers and return a total
The SUM function adds values and returns a total.
SUM(number1, [number2], ...)
SUM((TEXTSPLIT(C3,";")<>"")*1)
becomes SUM({0, 1, 1, 1, 0, 1, 1, 0, 1})
and returns 6.
8. Count non-empty cells in multiple cell ranges
This example demonstrates a formula that counts non-empty cells in multiple cell ranges. The new Excel 365 array functions make this easy and straightforward.
Formula in cell B12:
The image above shows three nonadjacent cell ranges B3:B9, D3:D9, and F3:F9. The cell ranges don't need to be the same size vertically or horizontally, though they are in this example. The cell ranges contain values and some random blank cells, the dynamic array formula in cell B12 counts non-blank cells in all three cell ranges combined.
Cell range B3:B9 contains 6 non-empty cells, D3:D9 contains 5 non-empty cells, and F3:F9 also contains 5 non-empty cells. The total number of non-empty cells are 6 + 5 + 5 = 16
Explaining formula
Step 1 - Join arrays
The VSTACK function combines cell ranges or arrays, it joins data to the first blank cell at the bottom of a cell range or array.
VSTACK(array1,[array2],...)
VSTACK(B3:B9, D3:D9, F3:F9)
becomes
VSTACK({7;"";82;43;25;10;21},{73;13;93;"";"";65;91},{"";11;97;61;4;45;""})
and returns
{7; ""; 82; 43; 25; 1""; 21; 73; 13; 93; ""; ""; 65; 91; ""; 11; 97; 61; 4; 45; ""}.
Step 2 - Check if not empty
The less than sign and the larger than sign combined lets you check if a value is NOT equal to another value. This example checks if the values are empty.
VSTACK(B3:B9,D3:D9,F3:F9)<>""
becomes
{7; ""; 82; 43; 25; 1""; 21; 73; 13; 93; ""; ""; 65; 91; ""; 11; 97; 61; 4; 45; ""}<>""
and returns
{TRUE; FALSE; TRUE; ... ; FALSE}.
Step 3 - Convert boolean values to numbers
The SUM function can't calculate a total using boolean values, we need to convert the boolean values to their numerical equivalents.
TRUE - 1
FALSE - 0 (zero)
The asterisk lets you multiply numbers and boolean values in an Excel formula.
(VSTACK(B3:B9,D3:D9,F3:F9)<>"")*1
becomes
{TRUE; FALSE; TRUE; ... ; FALSE}*1
and returns
{1; 0; 1; 1; 1; 1; 1; 1; 1; 1; 0; 0; 1; 1; 0; 1; 1; 1; 1; 1; 0}.
Step 4 - Calculate a total
SUM((VSTACK(B3:B9,D3:D9,F3:F9)<>"")*1)
becomes
SUM({1; 0; 1; 1; 1; 1; 1; 1; 1; 1; 0; 0; 1; 1; 0; 1; 1; 1; 1; 1; 0})
and returns 16.
9. Count non-empty cells per row
The image above shows an Excel 365 dynamic array formula that returns an array of numbers representing the number of non-empty cells per row. The position in the array corresponds to the row in cell range B3:E9.
The dynamic array formula in cell G3 spills values to cell G3 and cells below as far as needed. A #SPILL! error means that at least one of the destination cells is not empty. Make sure the cells are empty so the formula can distribute the array values to a cell each.
Excel 365 formula in cell G3:
Cell range B3:E3 contains three non-empty cells and one empty cell. Cell range B4:E4 contains two non-empty cells and two empty cells.
Cell range B5:E5 also contains two non-empty cells and two empty cells, this is also true for cell range B6:E6.
Cell range B7:E7 contains four non-empty cells and 0 (zero) empty cells. Cell range B8:E8 contains two non empty cells and two empty cells. This is also true for cell range B9:E9.
Explaining formula
Step 1 - Count nonempty cells
The COUNTA function counts the non-empty or non-blank cells in a cell range.
Function syntax: COUNTA(value1, [value2], ...)
COUNTA(a)
Step 2 - Build the LAMBDA function
The LAMBDA function build custom functions without VBA, macros or javascript.
Function syntax: LAMBDA([parameter1, parameter2, …,] calculation)
LAMBDA(a,COUNTA(a))
Step 3 - Count nonempty cells per row
The BYROW function puts values from an array into a LAMBDA function row-wise.
Function syntax: BYROW(array, lambda(array, calculation))
BYROW(B3:E9,LAMBDA(a,COUNTA(a)))
10. Sort rows based on the number of non-empty cells
Excel 365 dynamic array formula in cell G3:
Explaining formula
This formula works just like the example in section 9, but it also sorts rows based on the count of nonempty cells.
The SORTBY function sorts a cell range or array based on values in a corresponding range or array.
Function syntax: SORTBY(array, by_array1, [sort_order1], [by_array2, sort_order2],…)
11. Count non-empty cells per column
The image above shows an Excel 365 dynamic array formula that returns an array of numbers representing the total number of non-e,pty cells per column.
Cell range B3:E9 contains empty cells and non-empty cells. The following formula returns an array in B11 that spills values to the right as far as needed.
Excel 365 formula in cell B11:
The formula counts the number of nonempty cells per column, and the position in the array corresponds to the column in cell range B3:E9.
Cell range B3:B9 contains one empty cell and 6 non-empty cells. Cell range C3:C9 contains four empty cells and three non-empty cells.
Cell range D3:D9 contains five non-empty cells and two empty cells. Cell range E3:E9 contains three non-empty cells and four empty cells.
Explaining formula
Step 1 - Count nonempty cells
The COUNTA function counts the non-empty or non-blank cells in a cell range.
Function syntax: COUNTA(value1, [value2], ...)
COUNTA(a)
Step 2 - Build the LAMBDA function
The LAMBDA function build custom functions without VBA, macros or javascript.
Function syntax: LAMBDA([parameter1, parameter2, …,] calculation)
LAMBDA(a,COUNTA(a))
Step 3 - Count nonempty cells per column
The BYCOL function passes all values in a column based on an array to a LAMBDA function, the LAMBDA function calculates new values based on a formula you specify.
Function syntax: BYCOL(array, lambda(array, calculation))
BYCOL(B3:E9,LAMBDA(a,COUNTA(a)))
12. Sort columns based on the number of non-empty cells
This formula counts the number of non-empty cells in cell range B3:E9 per column and sorts the columns based on the count from large to small.
Excel 365 dynamic array formula in cell G3:
Cell range B3:B9 contains 6 non-empty cells. This cell range is the leftmost column in the output array in cell G3.
Cell range D3:D9 contains the next largest number of non-empty cells, this cell range is the second leftmost column in the array.
Cell ranges C3:C9 and E3:E9 contains the same number of non-empty cells. Cell range G11:J11 contains the count of non-empty cells in the sorted array in G3:J9.
Explaining formula
This formula works just like the example in section 11, however, it also sorts columns in cell range B3:E9 based on the count of nonempty cells.
The image above shows 6 in cell G11, and there are 6 nonempty cells in G3:G9. The next cell H11 displays 5, there are five nonempty cells in H3:H9.
The SORTBY function sorts a cell range or array based on values in a corresponding range or array.
Function syntax: SORTBY(array, by_array1, [sort_order1], [by_array2, sort_order2],…)
Back to top
'COUNTA' function examples
Table of Contents Add values to a regular drop-down list programmatically How to insert a regular drop-down list Add values […]
Table of Contents Automate net asset value (NAV) calculation on your stock portfolio Calculate your stock portfolio performance with Net […]
Table of Contents Compare the performance of your stock portfolio to S&P 500 Tracking a stock portfolio in Excel (auto […]
Functions in 'Statistical' category
The COUNTA function function is one of 73 functions in the 'Statistical' category.
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.
Contact Oscar
You can contact me through this contact form