You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
2.7 KiB

---
Alias: ["Investment Task", "Investment Task master"]
Tag: ["Wealth", "Investment", "Equity", "Crypto", "Equity", "VC"]
Date: 2021-08-17
DocType: "Confidential"
Hierarchy: "Root"
TimeStamp:
location: [51.514678599999996,-0.18378583926867909]
CollapseMetaTable: Yes
---
Parent:: [[Finances]], [[@Investment master|Investments]]
---
 
```button
name Create New Task
type note(New Task) template
action Template Task
id NewTask
```
^button-InvNewTask
```button
name Save
type command
action Save current file
id Save
```
^button-InvMSave
 
# Investment Tasks
 
```ad-abstract
title: Summary
collapse: open
This space centralises all tasks and to-dos for current and future investments.
```
 
```toc
style: number
```
 
---
 
### Task list
 
```dataview
table Priority, Status, NextReviewDate as "Next Review Date", DueDate as "Due Date" from "Investments"
where DocType = "Task"
sort DueDate ascending, NextReviewDate ascending
```
 
#### Review overdue
```dataview
table NextReviewDate as "Next Review Date" from "Investments"
where DocType = "Task" and NextReviewDate < date(today)
sort NextReviewDate ascending
```
&emsp;
#### Delivery overdue
```dataview
table DueDate as "Due Date" from "Investments"
where DocType = "Task" and DueDate < date(today)
sort DueDate ascending
```
&emsp;
#### Priority tasks
```dataview
Table Priority, DueDate as "Due Date" from "Investments"
Where DocType = "Task" and DueDate >= date(today) and Priority = "High"
Sort DueDate ascending
```
&emsp;
---
&emsp;
### Todo list
&emsp;
**[[Crypto Tasks]]**
```tasks
not done
path includes Crypto Tasks
sort by due
hide backlink
hide task count
```
&emsp;
**[[Equity Tasks]]**
```tasks
not done
path includes Equity Tasks
sort by due
hide backlink
hide task count
```
&emsp;
**[[VC Tasks]]**
```tasks
not done
path includes VC Tasks
sort by due
hide backlink
hide task count
```
&emsp;
#### Overdue Todos
```dataview
task from "Investments"
where DocType = "Task" and DueDate < date(today)
```
&emsp;
#### Urgent Todos
```dataview
task from "Investments"
where DocType = "Task" and DueDate < date(today) + dur(3 days)
```
&emsp;
#### High priority
```dataview
Task from "Investments"
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
```
&emsp;
#### Completed To-Dos
**[[Crypto Tasks]]**
```tasks
done
path includes Crypto Tasks
sort by due
hide backlink
hide task count
```
&emsp;
**[[Equity Tasks]]**
```tasks
done
path includes Equity Tasks
sort by due
hide backlink
hide task count
```
&emsp;
**[[VC Tasks]]**
```tasks
done
path includes VC Tasks
sort by due
hide backlink
hide task count
```
&emsp;
&emsp;