vault backup: 2025-01-24 16:14:01
This commit is contained in:
parent
d19b6c85ee
commit
7317a3bbf6
@ -20,19 +20,11 @@ TASK
|
||||
where completed
|
||||
and completion >= this.date - dur(7 days)
|
||||
and completion <= this.date
|
||||
group by file.folder
|
||||
group by tags
|
||||
sort completion asc
|
||||
```
|
||||
|
||||
>[!done]
|
||||
>```tasks
|
||||
>explain
|
||||
>done
|
||||
>starts after {{this.date}} -7 days
|
||||
>starts before {{this.date}}
|
||||
>group by tag
|
||||
>sort by done
|
||||
>```
|
||||
|
||||
|
||||
# This Week's Plan
|
||||
## Remarks
|
||||
|
||||
84
2 Cole Group Meeting Notes/Weekly Note 2025-01-27.md
Normal file
84
2 Cole Group Meeting Notes/Weekly Note 2025-01-27.md
Normal file
@ -0,0 +1,84 @@
|
||||
---
|
||||
date: 2025-01-27
|
||||
modification date: Friday 24th January 2025 16:07:06
|
||||
tags: []
|
||||
---
|
||||
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-20]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-02-03]] >>
|
||||
|
||||
# This Week's Daily Notes
|
||||
[[2025-01-20]]
|
||||
[[2025-01-21]]
|
||||
[[2025-01-22]]
|
||||
[[2025-01-23]]
|
||||
[[2025-01-24]]
|
||||
# Last Week's Plan
|
||||
# Accomplishments
|
||||
## Remarks
|
||||
## Tasks and Notes From This Past Week
|
||||
```dataview
|
||||
TASK
|
||||
where completed
|
||||
and completion >= this.date - dur(7 days)
|
||||
and completion <= this.date
|
||||
sort completion asc
|
||||
```
|
||||
|
||||
```tasks
|
||||
explain
|
||||
done
|
||||
done after {{query.file.filename}} - 7 days
|
||||
done before {{query.file.filename}}
|
||||
group by tags
|
||||
sort by done
|
||||
```
|
||||
|
||||
|
||||
|
||||
# This Week's Plan
|
||||
## Remarks
|
||||
## Tasks This Next Week
|
||||
### Tasks Overdue
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
due <= date(this.date)
|
||||
and due
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks Due this Week
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
due >= this.date
|
||||
and due <= this.date + dur(7 days)
|
||||
and due
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks in Progress
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
status != "-"
|
||||
and status = "/"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks Scheduled
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
scheduled
|
||||
and scheduled >= this.date
|
||||
and scheduled <= this.date + dur(7 days)
|
||||
and due > this.date +dur(7 days)
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user