Filters a range of data based on criteria you define.
Hàm này hoạt động trong Google Sheets giống như trong Excel — cùng cú pháp và đối số.
FILTER(array, include, [if_empty])The FILTER function allows you to extract data from a range or array based on a boolean condition. It returns a dynamic array that automatically spills into neighboring cells, updating whenever the source data changes.
=FILTER(A2:B5, B2:B5>100)Kết quả: Filtered rows
Returns all rows from A2:B5 where the value in column B is greater than 100.
This error occurs if no items meet the criteria and you did not provide an if_empty argument.