Hello,
I am trying to write a formula that pulls from two columns: Progress and Done?
Progress is a drop down column with these options: Not started, In progress, Scheduled, Declined.
Done? is a checkbox.
When Done? is checked, then the formula should return Complete.
When Done? is unchecked and Progress is Not started, then the formula should return Not started.
When Done? is unchecked and Progress is In progress, then the formula should return In progress.
When Done? is unchecked and Progress is Scheduled, then the formula should return In progress.
When Done? is unchecked and Progress is Declined, then the formula should return Complete.
This is what I have so far. It works when Progress is "Scheduled" but not the others.
=IF(Progress@row = "Scheduled", IF([Done?]@row = 1, "Complete", IF(Progress@row = "In progress", "In progress", IF(Progress@row = "Scheduled", "In progress", IF(Progress@row = "Declined", "Complete", "Not started")))))
Thank you for your help!