--- 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 ```   #### Delivery overdue ```dataview table DueDate as "Due Date" from "Investments" where DocType = "Task" and DueDate < date(today) sort DueDate ascending ```   #### Priority tasks ```dataview Table Priority, DueDate as "Due Date" from "Investments" Where DocType = "Task" and DueDate >= date(today) and Priority = "High" Sort DueDate ascending ```   ---   ### Todo list   **[[Crypto Tasks]]** ```tasks not done path includes Crypto Tasks sort by due hide backlink hide task count ```   **[[Equity Tasks]]** ```tasks not done path includes Equity Tasks sort by due hide backlink hide task count ```   **[[VC Tasks]]** ```tasks not done path includes VC Tasks sort by due hide backlink hide task count ```   #### Overdue Todos ```dataview task from "Investments" where DocType = "Task" and DueDate < date(today) ```   #### Urgent Todos ```dataview task from "Investments" where DocType = "Task" and DueDate < date(today) + dur(3 days) ```   #### High priority ```dataview Task from "Investments" Where DocType = "Task" and Priority = "High" and DueDate >= date(today) ```   #### Completed To-Dos **[[Crypto Tasks]]** ```tasks done path includes Crypto Tasks sort by due hide backlink hide task count ```   **[[Equity Tasks]]** ```tasks done path includes Equity Tasks sort by due hide backlink hide task count ```   **[[VC Tasks]]** ```tasks done path includes VC Tasks sort by due hide backlink hide task count ```