Hi guys,
I have a rather specific use-case for task and would love to hear any suggestion
-
I want to see all uncompleted task (i.e. today is Tuesday and i didn’t finish all my task yesterday, I want to see what I tasks I have left from Monday)
-
I want there to be a way to i.e. “ignore” a task that is irrelevant already. i.e. perhaps last Friday I had a task called “Call John if I need book from him”, and it’s not necessary anymore, I want to maybe click a button or add a “#ignore” tag to remove the task from my query. (i know i can just check off this task but i prefer not to do it this way so I can know what task i really completed vs ignored in the future)
-
It’s fine if not possible, but I hope I can push some tasks to further dates (i.e. I have this task on Tuesday that I really can’t finish until next Tuesday, can I somehow push it to the following Tuesday (or whatever date) in this dataview query or some other efficient manner.
I know my use case is quite nuanced, but I can achieve 1. and 2. with my current dataview query
Current Dataview Query
TASK
WHERE !completed AND text != ""
GROUP BY header
This will show all the unfinished tasked group by filename. The only caveat is I HAVE to check off the checkbox in order to “ignore” them.
Really appreciate any feedback. Thanks!