Adding weekly repeating tasks to a smart list
I have a smart list for my tasks to do for that week. However a task which I have set to repeat every Tuesday (with no priority) does not appear on the Smart list unless I add a priority. My smart list search is: (priority:1 AND status:incomplete) OR (dueBefore:Monday AND status:incomplete) OR (priority:2 AND status:incomplete). What can I do to fix it? Thanks.
Hi waireka,
The search criteria you gave isn't filtering out repeating tasks specifically, so the problem is most likely that the task is due on Tuesday and is being filtered out by the dueBefore:Monday clause.
One solution would be to use the isRepeating search operator to show repeating tasks regardless of their due date. For example:
(priority:1 AND status:incomplete) OR (dueBefore:Monday AND status:incomplete) OR (priority:2 AND status:incomplete) OR (isRepeating:true AND status:incomplete)
Hope this helps!
The search criteria you gave isn't filtering out repeating tasks specifically, so the problem is most likely that the task is due on Tuesday and is being filtered out by the dueBefore:Monday clause.
One solution would be to use the isRepeating search operator to show repeating tasks regardless of their due date. For example:
(priority:1 AND status:incomplete) OR (dueBefore:Monday AND status:incomplete) OR (priority:2 AND status:incomplete) OR (isRepeating:true AND status:incomplete)
Hope this helps!