w3resource

Excel Formulas - Count number of rows containing specific value

Count number of rows containing specific value

Count no. of rows containing specific value

Syntax of used function(s)

SUM(range)
MMULT(array1, array2)
COLUMN([reference])
TRANSPOSE(array)

The SUM function, one of the math and trig functions, adds values.
The MMULT function returns the matrix product of two arrays. The result is an array with the same number of rows as array1 and the same number of columns as array2.
The COLUMN function returns the column number of the given cell reference.
The TRANSPOSE function returns a vertical range of cells as a horizontal range, or vice versa.

What to do?

To count rows that contain specific values, the array formula based on the MMULT, TRANSPOSE, COLUMN, and SUM functions can be used. In the example shown, the formula in G7 is:


{=SUM(--(MMULT(--(B5:D12=F7),TRANSPOSE(COLUMN(B5:D12)))>0))}

The above formula is an array formula, it must be used ctrl+shift+enter key.

Formula


=SUM(--(MMULT(--(B5:D12=F7),TRANSPOSE(COLUMN(B5:D12)))>0))

How this formula works

Inside the above formula the logical criteria used is:


--(B5:D12=F7)

This formula generates a TRUE and FALSE result for every value in the range B5:D12 and the double negative (--) converts it into 1 and 0 and the array looks like


{0;1;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;1;}

This array formed by 8 rows and 3 columns (8x3) and go for next execution to MMULT function as array1 and the array2 is created from


TRANSPOSE(COLUMN(B5:D12)))

The COLUMN function is used to generate a numeric array of the right size. Therefore the matrix multiplication with MMULT funcntion done.
The column count in array1 (3) must equal the row count in array2.

COLUMN returns the 3-column array {2,3,4}, and TRANSPOSE changes this array to the the 3-row array {2;3;4}. MMULT then runs and returns a 8 x 1 array result looks like -


{3;0;2;2;0;0;3;4;}

Therefore check for non-zero entries with >0 and again convert the TRUE FALSE to 1 and 0 with a double negative and the array looks like -


{1;0;1;1;0;0;1;1;}

And finally the SUM function add the array and returns result.

Previous: Excel Formulas - Count number of occurences within mulitple worksheets in a workbook
Next: Excel 2013 - Basic



Follow us on Facebook and Twitter for latest update.