Show all Children Health Ball Colors in Parent Cell?

Here's an example, if there are 3 children with different health statuses (see ss below). Is there any way to show all three colors in the parent field? Thanks!



Tags:

Best Answer

  • JamesB
    JamesB ✭✭✭✭✭✭
    Answer ✓

    @clairehunter

    This is a different approach than what I had to do, mine had many more columns and variables to deal with, however, just reading this it should be

    =IF(COUNT(CHILDREN()) = 0, IF([B/O]@row = 1, "🔴", IF(Status@row = "In Progress", "🟡", IF(Status@row = "Not Started", "⚫️", IF(Status@row = "Completed", "🟢")))), JOIN(DISTINCT(COLLECT(CHILDREN(), CHILDREN(), @cell <> ""))))

    This should say if it is a child row, then go through the color options. If it is not a child row then join the distinct colors together.

«1

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!