Hi everyone, two part question. Can I identify based on the color of the single-select option, and can I display the field name as output from a formula?
I have a project tracking sheet with ~10 task fields, and a color coded dropdown status for each. From left to right, they will basically go from red to green, with in-progress colors in between. Was wondering if it’s possible to report the first column that matches a criteria (ex: not red or green) and have it appear in the status formula cell with the field name (ex: Fee Draft - Landlord Reviewing).
Here’s a hack I came up with for a sample 3 task using nested if’s, but I don’t want to have to resort to using emojis if I don’t need to, and don’t want to have to update if field names change.
Sample status:
Fee Form - Not drafted :x: / Drafted/sent :ok_hand: / :white_check_mark: Final sent :white_check_mark:
IF(FIND(“ :ok_hand: ”,{RFP Draft}),CONCATENATE("RFP Draft - ",{RFP Draft}),
IF(FIND(“ :ok_hand: ”,{Fee Draft}),CONCATENATE("Fee Draft - ",{Fee Draft}),
IF(FIND(“ :ok_hand: ”,{Fee Form}),CONCATENATE("Fee Form - ",{Fee Form}),
IF(FIND(“ :white_check_mark: ”,{Fee Form}),CONCATENATE(“Project Complete!”),
“”))))
Any other ideas to handle automating status updates?
Thanks in advance!
