Completed Tasks This week
thc says:
I'm trying to build a search that shows all tasks completed within the last week. I found, in an earlier post, this:
status:completed AND completedWithin:"2 weeks of Sunday" NOT completedWithin:"1 week of Sunday"
.. but I just marked a task as completed and it didn't appear in the search results. This task happens to be a recurring task - is that why?
-- Tom
status:completed AND completedWithin:"2 weeks of Sunday" NOT completedWithin:"1 week of Sunday"
.. but I just marked a task as completed and it didn't appear in the search results. This task happens to be a recurring task - is that why?
-- Tom
thc says:
After taking another look there are quite a few tasks missing from that search. I can tell because I've only been using RTM since October 30th and have three tasks completed that day, three on November 2nd, and two today. What appears on my "this week" are the three since October 30th. Apparently my query is showing me tasks completed last week, no? What would the appropriate query be?
-- Tom
-- Tom
steveshay says:
If you complete an item today it will not show up on your search because you are explicity excluding items completed this week.
Consider the following searches:
Completed within 1 week from today (rolling week):
completedWithin:"1 week"
Completed during this Calendar week:
completedWithin:"1 week of Saturday"
Completed during the last calendar week:
completedWithin:"2 weeks of Saturday" NOT completedWithin:"1 week of Saturday"
Completed two calendar weeks ago:
completedWithin:"3 weeks of Saturday" NOT completedWithin:"2 weeks of Saturday"
Completed more than two weeks ago:
completedBefore:today and not completedWithin:"2 weeks of today"
Consider the following searches:
Completed within 1 week from today (rolling week):
completedWithin:"1 week"
Completed during this Calendar week:
completedWithin:"1 week of Saturday"
Completed during the last calendar week:
completedWithin:"2 weeks of Saturday" NOT completedWithin:"1 week of Saturday"
Completed two calendar weeks ago:
completedWithin:"3 weeks of Saturday" NOT completedWithin:"2 weeks of Saturday"
Completed more than two weeks ago:
completedBefore:today and not completedWithin:"2 weeks of today"