Multiple NOT's in search not working
(closed account) says:
I'm trying to make a search for tasks without tags that are not in either of two lists. It works with one NOT, but not with two.
That is, this works: isTagged:false NOT list:Productions
But this does not work: isTagged:false NOT list:Productions NOT list:AnotherList
I also tried with AND in there, but the same result. Is it possible to have multiple NOT's?
That is, this works: isTagged:false NOT list:Productions
But this does not work: isTagged:false NOT list:Productions NOT list:AnotherList
I also tried with AND in there, but the same result. Is it possible to have multiple NOT's?
emily (Remember The Milk) says:
Sure, but you'd need to group these:
isTagged:false AND (NOT list:Productions) AND (NOT list:AnotherList)
Alternatively:
isTagged:false NOT (list:Productions OR list:AnotherList)
Hope this helps!
isTagged:false AND (NOT list:Productions) AND (NOT list:AnotherList)
Alternatively:
isTagged:false NOT (list:Productions OR list:AnotherList)
Hope this helps!
(closed account) says:
Ah, excellent! Thank you!