| Welcome! | English (US) ![]() |
| Welcome! | English (US) ![]() |
says:
I'd like to create a search to show tasks that are due 1 weekday from now. Any thoughts ?
Ideally : due:"1 weekday from now"
Doesn't seem to work.
Posted at 8:05pm on November 6, 2009
For Sunday - Thursday you would just use (due:Tomorrow) but to keep weekend tasks from displaying on Friday and Saturday you need to add (AND dueBefore:Saturday)
which gives us:
(due:Tomorrow AND dueBefore:Saturday)
To show Mondays tasks over the weekend we use (due:Monday) and restrict it to (AND dueWithin:"4 days") so we don't see Monday's tasks during the rest of the week.
this gives us:
(due:Monday AND dueWithin:"4 Days")
Show the results of either of these searches and you will get the tasks due on the next weekday:
(due:Tomorrow AND dueBefore:Saturday) OR (due:Monday AND dueWithin:"4 Days")
Posted at 2:16am on November 7, 2009
Correction.
Using dueBefore:Saturday will cause Sunday's tasks to be displayed on Saturday. To fix this issue use NOT (due:Saturday OR due:Sunday) instead.
Corrected search:
(due:tomorrow AND NOT (due:Saturday OR due:Sunday)) OR (due:Monday AND dueWithin:"4 Days")
Posted at 2:58am on November 7, 2009
says:Terrific, thanks for the quick replies !
Forgot to add one thing. I'm trying to create a smart list that will always inherit a due date of the following workday. As such, I don't think this will work, since it uses "OR".
Any other thoughts ?
Posted at 10:46pm on November 7, 2009
No, there'd be no way to use the "inheritance" feature within this kind of search; you could use due:tomorrow but, of course, that would include weekends.
Posted at 4:02pm on November 9, 2009
says:Bummer, but thanks for the reply. Is there a way to request a new feature ?
Posted at 12:30pm on November 10, 2009
Consider it requested. ;)
Posted at 2:45pm on November 11, 2009