Skip to content

MODE_IF

Most frequent value in a range, filtered by one or more conditions. Works with any data type.

Function syntax

MODE_IF(mode_range, filtering_range1, condition1, ...)

Arguments:

  • mode_range: The range containing the values to analyze.
  • 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 mode 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 included. If there’s a tie, returns the first occurring value.

Examples

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