I have a column in a project tracking smartsheet that shows the status of a project. I would like the parent row for the project to automatically change depending on the status of the child rows. I can do that through the formula: =IF((COUNTIF(CHILDREN(), "Withdrawn") + (COUNTIF(CHILDREN(), "Requested"))) = COUNT(CHILDREN()), "Requested", IF(COUNTIF(CHILDREN(), "In Progress") > 0, "In Progress", IF(COUNTIF(CHILDREN(), "Withdrawn") = COUNT(CHILDREN()), "Withdrawn", IF((COUNTIF(CHILDREN(), "Complete") + (COUNTIF(CHILDREN(), "Withdrawn"))) = COUNT(CHILDREN()), "Complete", "In Progress"))))
But I would like the column to default to this formula, and there does not seem to be a way to do that. Is there something I can do to avoid having to add this formula every time I create a new project? Just a note, there are usually many child rows after a parent row, so this formula generally would not be present two rows above a new row. And new rows are always added to the bottom of the sheet.
Thanks!