View Single Post
In the meanwhile, if you want to generate numbered lists of the due (or due soon) (and uncompleted) tasks which are assigned to no context, and want to exclude projects from the list (and count), you could save searches like the following in the search library of Where in OF
tasks where (its context is missing value) and (due date < now) and (completed is false) and (it is not root task of its containing project)
tasks where (its context is missing value) and (due date < soon) and (completed is false) and (it is not root task of its containing project)
Tasks assigned to a particular context can be listed with an idiom like:
tasks where (name of its context contains <txt>) and (due date < soon) and (completed is false) and (it is not root task of its containing project)
--

Last edited by RobTrew; 2012-07-17 at 06:54 AM.. Reason: added 'soon' version, and variants with and without assigned contexts