View Single Post
Quote:
Originally Posted by RobertK View Post
I can't figure out how to alter the script show it only shows active or uncompleted items.
You can add the condition and dateCompleted is null inside a where clause.

Sth like:
task where inInbox = 1 and dateCompleted is null
or
task join context c on task.context = c.persistentIdentifier where c.name=\"Library\" and dateCompleted is null
--

Last edited by RobTrew; 2012-06-13 at 03:48 AM..