Forums

Discuss all things Remember The Milk.

menu

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?
Posted at 3:57pm on August 1, 2007
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!
Posted 17 years ago
(closed account) says:
Ah, excellent! Thank you!
Posted 17 years ago
This topic has now been closed automatically due to a lack of responses in the past 90 days.