View Single Post
In Where in OF (for OF 1.8)

You could save generic custom searches like:
tasks where (due date ≥ <dte1>) and (due date ≤ <dte2>)
(the app will prompt you to enter absolute or relative dates)

specific custom searches like:
tasks where (due date ≥ tomorrow) and (due date ≤ today + 12 * weeks)
or something in between, which would enable you to look quite quickly at a variety of horizons (various numbers of weeks ahead):
tasks where (due date ≥ today) and (due date ≤ today + <num> * weeks)
A list of matching items is displayed, and you can select one or more particular items in the list and jump straight to them in the OF graphic user interface.

--

Last edited by RobTrew; 2012-07-17 at 07:49 AM..