Hi! I need help with a formula to automatically update the "status" column based on changes to multiple fields.
The status column has three options: Not started, In progress, and Complete.
-- If columns "Reviewer Assigned" and "Approver Assigned" are not blank, I want the status to automatically change to "In progress."
-- If column "Send Email?" is "Yes", I want the status to automatically change to "Complete."
-- Otherwise, the stsus would be "Not Started" (ie. no reviewer or approver).
Here is what I have so far. I know there are errors though:
=IF(NOT(ISBLANK([Reviewer Assigned]@row)),NOT(ISBLANK([Approver Assigned]@row)),"In progress",IF([Send Email?]@row="Yes","Complete","Not started"))))
Thank you for your help!