Skip to content

COUNT_FALSE_IF

Count of FALSE values in a range, filtered by one or more conditions.

Function syntax

COUNT_FALSE_IF(count_false_range, filtering_range1, condition1, ...)

Arguments:

  • count_false_range: The range containing the TRUE/FALSE values to check.
  • filtering_range1: The range to check against condition1.
  • condition1: The value(s) to match in the filtering range.
  • filtering_range2, condition2, …: (optional) Additional filtering range and condition pairs.

Provide the count range first, then pairs of filtering range and condition. All ranges must be single-column and the same height. When multiple conditions are provided, all must match for a value to be counted.

Examples

  • COUNT_FALSE_IF(B3:B10, A3:A10, “apple”) - Counts FALSE values in B3:B10 where A3:A10 is apple.
  • COUNT_FALSE_IF(B3:B10, A3:A10, “apple”, D3:D10, ‘1/1/24’..‘1/31/24’) - Counts FALSE values in B3:B10 where A3:A10 is apple and D3:D10 is within January 2024.