ZonoTools

Excel Practice - FILTER

Instruction

Return rows from A2:C6 where C2:C6 equals "North"; if none, return "No match".

Formula Syntax

=FILTER(array, include, [if_empty])

  • array: Source range/array for calculation.
  • include: Boolean include condition for each row/element.
  • [if_empty]: Optional result when no data matches filter criteria.

What it does

Return rows from an array that match conditions.

dynamic-array-data.xlsx

ABC
1CategoryAmountRegion
2A120North
3B340South
4A560North
5C225West
6B90South
7Output

Input Formula

Need Help?

Tips

  • Use FILTER with clean and consistent ranges for predictable results.
  • Validate data types (number, text, date) before applying the formula.
  • Test the formula with a small sample first, then scale it to larger ranges.