Precisely, as I stated in my previous reply, and the way I perceive it, the current query…
WHERE !Due AND !due AND !Priority AND !priority AND !Completed AND !completed
…should work if ALL of those values aren’t set to something, right? And yet, it works when only ONE of those values is set. Or more. Which is what I was trying to do with this particular query.
As in, I have a note where all values are blank. It shows up among the query’s results. As soon as at least ONE of those values, Completed, Due, or Priority are populated with something, the note disappears from the query’s results.
As I said in my previous reply, I can’t understand why it didn’t work with “OR” but needed “AND”. If I typed my query in plain English, I want the page to appear in the query’s results…
WHERE Due isn't set, OR Completed isn't set, OR Priority isn't set, blah-blah-blah
…and yet that didn’t work. What did was…
WHERE Due isn't set AND Completed isn't set AND Priority isn't set
…which in English should mean that, for the note to disappear from the query’s results, ALL those values should not be set. Right?
Let’s look at it another way: it’s as if I had a “White:” and a “Black:” parameter, and I wanted a query to show a note with those values if either White OR Black weren’t set to a value. Notice the “OR” in the sentence. This should work if at least one of them was set to a value. That should give me a query like…:
WHERE !Black OR !White
And yet, that didn’t work, but…
WHERE !Black AND !White
…did. However, this last query above “reads” in plain English as “BOTH of those parameters SHOULDN’T be set”. And yet it works if only ONE of them isn’t set.