On 1/16/02 7:44 AM, "Richard Shane" <[EMAIL PROTECTED]> wrote:
> Paul > > A while ago, you showed me how to do a Custom View that lists all tasks > completed today and another view that lists all tasks completed yesterday. > Very useful. Thank you. > > When I access the entire list of completed tasks, is there any way that > those can be sorted according to the date they were completed? No, that information isn't available, not even by script. It must be in the database - sort of - in that you can make a custom view for tasks using "date modified" as a criterion, and usually the last "date modified" of a completed task will be the date it was completed, but there's no column for it, and it's not a property accessible by AppleScript. You could get a Custom View of only completed tasks whose date modified was less than (or greater than, or equal to) a certain number of days ago, but not the whole list sorted by it. The way you could start doing it for yourself would be to make a new event every time you completed a task. Make it just a minute long, for example, give it exactly the same name as the task but include something like "[CT]" in the title. Or else give it a "Task Completed" category. That might be best. You could link it to the task as well. Then make a custom view for every Calendar Event whose name contains [CT], or whose category is "Task Completed" and sort it by date, and there you are. You can always go to the linked task if you need more details. -- Paul Berkowitz -- To unsubscribe: <mailto:[EMAIL PROTECTED]> archives: <http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/> old-archive: <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>
