Tuesday 21 March 2017

Excel - Microsoft Excel COUNTIFS Function

Basic Description
The Excel Countifs function returns the number of entries (within one or more supplied arrays), that satisfy a set of given criteria.

The function is new in Excel 2007, and so is not available in earlier versions of Excel. 

The syntax of the Countifs function is : 

COUNTIFS( criteria_range1, criteria1, [criteria_range2, criteria2], ... ) 


Where the function arguments are as follows: 


Up to 127 pairs of criteria_range and criteria arguments can be supplied to the function. 
Wildcards 

You can also use the following wildcards in text-related criteria: 

?    -    matches any single character
*    -    matches any sequence of characters 

if you do actually want to find the ? or * character, type the ~ symbol before this character in your search. 

eg. the condition "A*e" will match all cells containing a text string beginning with "A" and ending in "e". 

Each of the supplied criteria can be either: 


and can be entered into the function either directly, as a value returned from another function, or as a reference to a cell containing a value. 

Note that if your criteria is a text string or an expression, this must be supplied to the function in quotes. 

Also note that the Excel Countifs function is not case-sensitive. So, for example, the text strings "TEXT" and "text" will be considered to be equal. 

Excel Countifs Function Examples

The spreadsheet below shows a set of exam results for a class of students. 

The Countifs function can be used to find the number of rows in the data set that satisfy conditions relating to the subject, score and gender. 

This is shown in the examples below. 


Example 1

If we want to know how many female test scores were greater than 60%, we could use the following formula: 

=COUNTIFS( B2:B13, "Female", D2:D13, ">60%" ) 

which gives the result 4

In this example, the formula has counted the number of rows where: 

Example 2

If we want to know how many science tests scores were less than 50%, we could use the formula: 

=COUNTIFS( C2:C13, "Science", D2:D13, "<50%" ) 

which gives the result 2


Countifs Function Errors

The error that you are most likely to get from the Excel Countifs function is the #VALUE! error : 
Common Error 



































No comments:

Post a Comment