I have a Status column that is calculated via an IF statement referencing two other columns, [% Complete] and [Cancelled / On Hold].
=IF([% Complete]@row = "", "", IF([Cancelled / On Hold]@row <> "", [Cancelled / On Hold]@row, IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress", "Not Started"))))
I would like the roll-up status of the parent to say "Cancelled / On Hold" if all Status fields are "Cancelled" or "On Hold" instead of "In Progress" as it does now.
Is that possible and what would I need to add to my formula to do so?
Thank you kindly.