Skip to content

COUNT_BLANK_IF

Count of empty cells in a range, filtered by one or more conditions.

Function syntax

COUNT_BLANK_IF(count_blank_range, filtering_range1, condition1, ...)

Arguments:

  • count_blank_range: The range to check for empty cells.
  • 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 an empty cell to be counted.

Examples

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