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

Is there a more concise way of writing this? Instead of listing out each individual column separately? Or should I use =QUERY instead?

1 Answer 1

2

try:

=ARRAYFORMULA(QUERY({'Handle Database'!A:AF},  
 "where "&TEXTJOIN(" and ", 1, "not Col"&COLUMN(X:Z)&" = 'Plastic'")))
Sign up to request clarification or add additional context in comments.

1 Comment

docs.google.com/spreadsheets/d/… Not working for some reason look at the page "Filtered Database" please. Additionally if I wanted to add more criteria such as Glass,Blue Steel,Wood,Oak. How would I go about that? And beyond that what if I wanted multiple other conditions that I want to filter the database by on other columns is that possible?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.