I would like to request support for mixed AND/OR logic
At the moment, Glide allows you to build a group of either:
All AND conditions
Or all OR conditions
But there is no way to combine AND and OR inside the same condition block — unless you build computed columns as workarounds.
Example of current limitation:
I want to show items when:
(Category is "B" OR Category is "C") AND Supplier is "D"
This type of logic is not possible directly in Glide today — you would have to precompute columns for each sub-condition, or duplicate screens. This gets very cumbersome as the app grows.
Why this matters: Many real-world conditions require mixed AND/OR logic Reduces the need for workarounds with computed columns Saves screen duplication Allows business users to model their processes more naturally Common in many filter engines and UI builders
Workarounds do exist (using multiple columns with IF/Else or template columns), but true built-in support for this would dramatically improve Glide’s expressiveness and reduce complexity in larger apps.
It’s a solution for his problem, but it would be nice if Glide’s native filters were a bit more advanced. I’ve worked with systems built in 2009 and had this feature, and I’m sure that it would help and be used in hundreds, if not thousands, of apps.
I don’t disagree with the feature request, in fact I voted for it (although it probably should be merged into Jeffs original feature request, so the votes aren’t diluted).
The point I was trying to make (not very well) is that the native if-then-else column is a lot more powerful than it might appear. And it is in fact possible to create quite complex matching logic within a single column.