❖ Contents

Checkboxes

Content Items

Tasks

Task Count

format(prop("Tasks Done")) + "/" + format(length(replaceAll(prop("Tasks"), "[^,]", "")) + 1)

<aside> 💡 You could also have another rollup property that shows the total number of tasks and combine that with the Tasks Done property in a formula.

</aside>

format(prop("Tasks Done")) + "/" + format(prop("Tasks Total"))

Statuses

Projects

Tasks

Subtasks + Progress

Tasks → Checkboxes

Tasks → Statuses

Progress

or(prop("Done"), prop("Subtasks Done") / prop("Total Subtasks") >= 1) ? "✅" : (and(empty(prop("Subtasks Done")), not empty(prop("Total Subtasks"))) ? "0%" : format(slice("■■■■■■■■■■", 0, floor(prop("Subtasks Done") / prop("Total Subtasks") * 10)) + " " + format(round(prop("Subtasks Done") / prop("Total Subtasks") * 100)) + (empty(prop("Subtasks Done")) ? "0%" : "%")))

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>