I'm trying to have my Status column update automatically based on other columns being empty or not empty. For example:
IF Column A = empty, THEN Status = "New"
IF Column A = not empty, THEN Status = "In Progress"
IF Column B = not empty, THEN Status = "Awaiting Approval"
IF Column C = not empty, THEN Status = "Done"
In my workflow, Columns A-C will each be filled out by a different user, and will always be filled in in that order (A, then B, then C). Therefore, I don't need to worry about IF Column A AND Column B = not empty. I can just know that if data is present in X column, display Y status.
I'm assuming I can do this by using an IF statement that has the logical expressions in the correct order (i.e., check Column C first, then Column B, then Column A).
For some background, I'm working around the fact that SS doesn't allow me to set a value in my Status column based on the submission of a form/ update request/ approval. Also, using a formula isn't ideal, because I would like for users to be able manually update the Status column (if I use the IF formula, and then a user manually overrides it, it will prevent the Status from updating automatically in the future).
Is there a better way I can be doing this? Or if not, does the strategy I laid out make sense/ have any flaws?
Thank you in advance for any and all help!