Checkboxes
Content Items
Tasks
Task Count
format(prop("Tasks Done")) + "/" + format(length(replaceAll(prop("Tasks"), "[^,]", "")) + 1)
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.
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%" : "%")))