使用 QUERY() 過濾

一個 B C d
1 鋼筆 紅色 500
2 鋼筆 藍色 -50
3 鋼筆 紅色 0
4 鉛筆 藍色 17
5 鉛筆 綠色 -1.5

僅返回鉛筆資料:

=QUERY("A1:D6","select * where B='pencil' ",1)

僅返回包含 pen(所有行)的行:

=QUERY("A1:D6","select * where B contains 'pen' ",1)

要僅返回價格大於 0 的行:

=QUERY("A1:D6","select * where D>0 ",1)

請注意,文字字串需要撇號,而數值則不需要。