过滤具有相同功能的多列?

Filter multiple columns with same function?

=filter('Handle Database'!A:AF,'Handle Database'!Z:Z<>"Plastic",'Handle Database'!X:X<>"Plastic",'Handle Database'!Y:Y<>"Plastic")

有没有更简洁的写法?而不是单独列出每个单独的列? 还是我应该改用 =QUERY

尝试:

=ARRAYFORMULA(QUERY({'Handle Database'!A:AF},  
 "where "&TEXTJOIN(" and ", 1, "not Col"&COLUMN(X:Z)&" = 'Plastic'")))