A true conversation with AI… and frankly this scares me.
Maybe you can help with this. I’ve tried a million different ways to get it to filter by
• Time Stamp is within Today
• And Status is New OR Status is Modified
And I can’t get it to do it. If you provide me with an explicit direction I will do that and report back what happens. Thanks
Gotcha — Glide’s filter logic is a little quirky when you want an OR condition, so here’s the exact way to do it without fighting the UI.
Add helper columns in your Orders table
We’ll make two Boolean columns to simplify the filter.
1\. **Col 1:** Is Today? (If–Then–Else column)
• IF Time Stamp → is within → **Today**
→ THEN true
→ ELSE false
2\. **Col 2:** Is New or Modified? (If–Then–Else column)
• IF Status is New
→ THEN true
• ELSE IF Status is Modified
→ THEN true
• ELSE false
⸻
Combine them in a third Boolean column
Name it Show in Kitchen? (If–Then–Else column):
• IF Is Today? is true AND Is New or Modified? is true
→ THEN true
→ ELSE false
⸻
Filter your Kitchen Display
In the Kitchen Display screen:
• Set the filter to **Show in Kitchen? is true**.
⸻
That way, Glide only has to check one Boolean column, and you avoid the UI’s “can’t mix OR with AND” limitations.
This is frankly worse that C, Fortran, Pascal, dBase or even BASIC which could all handle this simple logic problem adroitly without resort to creating columns to hold intermediate calculations. And besides, what ever happened to “No Code Required”?
While Glide does some things really well it often fails on the most basic things.
Mark