Progress Bar Task List

I have a todo list in a Canvas column and I want my Progress Bar to reflect the amount of boxes checked. Help!

hi @Mike_Driscoll ,

this is a bit beyond the standard Coda Formula Language, but here you go:

thisRow.tasks._Merge().ParseJSON("*..style,lineLevel,Children,isChecked").WithName(Outcome,
  
  Outcome.Filter(CurrentValue = True())
  
  ).Count()

Cheers, Christiaan

6 Likes

Wow. Thank you. I tried to use the code on the doc I needed it and it’s not. working. Any ideas?


@Mike_Driscoll

the dot is missing between merge() and ParseJSON.

For future reference - Red squiggly lines are hints to where the formula went wrong :slight_smile:

cheers!
Mel

2 Likes

I got it to work! Thank you

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.