多个单元格引用的过滤公式

Filter formula for multiple cell references

考虑到我有一个清除所有搜索框的按钮并且用户被指示只搜索一个框一次,如果多个框已填充,请按下按钮?

See image

Here's my editable Spreadsheet

非常感谢。

您可以通过 +*

组合条件
=IFNA(
  FILTER(A2:C4;(A2:A4=B6)+(B2:B4=B7)+(C2:C4=B8));
  "Enter the data for the request"
)

尝试:

=IFNA(QUERY(A2:C4; "where A = '"&B6&"' 
                       or B = '"&B7&"' 
                       or C = '"&B8&"'"; 0))


I'd like results to be shown only if the data users look for are in the same row.

=IFNA(QUERY(A2:C4; "where A = '"&B6&"' 
                      and B = '"&B7&"' 
                      and C = '"&B8&"'"; 0))

更新:

=IFNA(QUERY(A2:C4; "where "&TEXTJOIN(" and "; 1; 
 IF(B6="";;"A = '"&B6&"'"); 
 IF(B7="";;"B = '"&B7&"'"); 
 IF(B8="";;"C = '"&B8&"'"))&""; 0))