View Single Post
Rob Trew's Where in OF script handles all of these requests with relative ease.
Code:
projects where (status is active) and number of available tasks > 1 --sh  gr=folder st=next
produces a window which selects only active projects with at least one available task and shows them grouped by folder, displaying only next actions

"does not equal" is also handled. As an example:
Code:
projects where name does not contain "omni" and its estimated minutes is not missing value and estimated minutes is not 10
finds all projects that don't contain "omni" in the name, have a duration estimate, and that estimate is not 10 minutes

Use the assisted search editing to get an idea of how to write the expressions.

Last edited by whpalmer4; 2012-07-17 at 09:29 AM.. Reason: Update link