I am trying to figure out how to roll up a status in my project plan. I have been trying to figure it out using this link from the community: Formula to Roll Up Task Status — Smartsheet Community.
However, I am getting confused about the "helper" column. If I understand correctly, I need to have a status column where I manually enter the status. I then need a different column that will read the manually-entered statuses from the previous column, and roll them up. Is that correct? I will paste the formula I have tried below. I think the problem is that I don't have it referring to the manual column, but rather its own column. I have tried to adjust this to point to the manual column, but the formula is too complex for me and I keep breaking it when I try to figure out where the reference should go. Is anyone able to assist? I'm not picky, and will take any help I can get, but I always appreciate both assistance with the formula, and a bit of information so that hopefully I have to bug the community less over time.
=IF(COUNTIFS(CHILDREN(), "In Progress") > 0, "In Progress", IF(COUNT(CHILDREN()) = COUNTIFS(CHILDREN(), "Cancelled"), "Cancelled", IF(COUNT(CHILDREN()) = COUNTIFS(CHILDREN(), OR(@cell = "Cancelled", @cell = "Not Started")), "Not Started", IF(COUNT(CHILDREN()) = COUNTIFS(CHILDREN(), OR(@cell = "Cancelled", @cell = "Complete")), "Complete", IF(COUNT(CHILDREN()) = COUNTIFS(CHILDREN(), OR(@cell = "Cancelled", @cell = "On Hold")), "On Hold")))))
In the screenshot below, the manual column is "Status", and the column where I have put the formula is "Rolled Up Status". Thank you in advance