<aside> 🧠 These are the formulas referenced in my sub-tasks guide. They’re also used in my Ultimate Tasks template. You can find all of the formulas for that template here: Formula Reference

</aside>

https://www.youtube.com/watch?v=gcH5i3RS8k0

Sub Seed

These properties must exist first:

if(empty(prop("Parent Task")) == true, true, false)

Reference: Sub Seed

Sub Seed Name

These properties must exist first:

if(empty(prop("Parent Task")) and prop("Sub Seed") == true, prop("Task"), prop("Parent Task"))

Reference: Sub Seed Name

Due Timestamp

<aside> 🧠 This formula is slightly different than the one shown in the video. It has been improved so that sorting is maintained even when a parent task does not have a due date.

</aside>

These properties must exist first:

if(empty(prop("Due")), timestamp(dateAdd(now(), 100, "years")), timestamp(prop("Due")))

Reference: Due Timestamp