Need help creating formula to show # of Children that are complete & percentage

Options
Sfogg123_iodine
edited 01/04/24 in Formulas and Functions

Should display something like: 2/10 (20%)

# completed tasks / total tasks (percentage of total)

Can you please help?

Best Answer

  • Leibel S
    Leibel S ✭✭✭✭✭✭
    Answer ✓
    Options

    Something like this should work:

    =COUNTIF(CHILDREN(Complete@row), @cell = 1) + "/" + COUNT(CHILDREN()) + " (" + IFERROR(ROUND(SUM(COUNTIF(CHILDREN(Complete@row), @cell = 1) / COUNT(CHILDREN())) * 100, 0), "0") + "%)"

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!