COUNTIFS
Counts values based on multiple conditions
COUNTIFS( column
, criteria
,[ additional_column
, additional_criteria
,...])
Counts the values in a column
that are within a row meeting all specified criteria
; multiple column
, criteria
pairs can be input.
Arguments
Argument | Description |
| Column to count |
| Condition that must be met for |
| Additional |
| Condition that must be met for |
Outputs
Outputs count of values in column
(s) that meet all criteria
Example
With this formula:
COUNTIFS({Adult Population}, {Child Population} < 1000000, {Adult Population}, {Region}="East")
We see the resulting table. Criteria are applied to {Region}
and {Child Population}
, while {Adult Population}
is being counted.
Last updated