Changing Status Column Output based on Checkbox completion
CDGiggy
✭✭
I am working on a project that has Two Checkboxes labeled "Done" and "Sign Off" that I want to affect the Status column. The Status Column has the out put of "To Do" "Doing" Review" "Completed"
When the Done Checkbox is clicked, I want the Status to go from "Doing" to "Review" and when the Sign Off Checkbox is clicked, I want the Status to go from "Review" to "Completed". Once "Completed" I want to keep the Done and Sign Off Checkbox filled in.
Best Answers
-
Try this:
=IF([Sign Off]@row = 1, "Completed", IF(Done@row = 1, "Doing Review", "To Do"))
-
Looks like that is working. Thank you.
Answers
-
Try this:
=IF([Sign Off]@row = 1, "Completed", IF(Done@row = 1, "Doing Review", "To Do"))
-
Looks like that is working. Thank you.