Useful Bases templates #270
Replies: 3 comments 4 replies
-
|
Here's are simple one that I've found useful. It contains three views: "Open tasks", "Complete tasks", and "Tasks completed in the last week" filters:
and:
- tags.contains("task")
formulas:
Complete today: '!complete_instances.contains("today")'
"": ""
views:
- type: table
name: All tasks
filters:
or:
- completedDate.isEmpty()
- '!complete_instances.contains("today")'
order:
- file.name
- title
- scheduled
- dateCreated
- dateModified
- completedDate
- contexts
- tags
- complete_instances
- formula.
sort:
- property: scheduled
direction: ASC
- property: formula.Complete today
direction: DESC
- property: completedDate
direction: DESC
- property: dateModified
direction: ASC
columnSize:
file.name: 119
note.title: 340
note.dateCreated: 113
note.dateModified: 175
- type: table
name: Completed Tasks
filters:
or:
- status == "done"
- complete_instances.contains("today")
order:
- file.name
- title
- dateCreated
- dateModified
- completedDate
sort:
- property: completedDate
direction: DESC
- type: table
name: Tasks completed in the last week
filters:
and:
- completedDate >= now() - "7 days"
order:
- file.name
- title
- dateCreated
- dateModified
- completedDate
- contexts
- projects
sort:
- property: projects
direction: DESC
- property: completedDate
direction: DESC
- property: dateModified
direction: DESC
columnSize:
file.name: 119
note.title: 340
note.dateCreated: 113
note.dateModified: 175 |
Beta Was this translation helpful? Give feedback.
-
|
By the way, I get the correct completed_instance if I mark a task as complete on the calendar, but it is the day before if done as an inline task. |
Beta Was this translation helpful? Give feedback.
-
|
Hello, I would like to have a view for the tasks in the next 7 days. It works easily for the "one shot" tasks with a filter on the due property but how could I retrieve the recurring tasks where the next occurence is in the next days ? Thanks |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Since TaskNotes has been designed to work well with Bases, I thought it would be helppful to share Bases templates. Please use this discussion to share Bases files you've had success with when working with your TaskNotes files.
Beta Was this translation helpful? Give feedback.
All reactions