Here is my problem:
Column A has dropdown values: Open, closed, pending, approved
Column D has dropdown values: Approved, Deferred, Escalate
I created a helper column and what I'm trying to do:
if column D change to approved, column A will also go to approved
If column D changes to escalate. column A updates to approved
if column D change to differed, column a will update to closed
I have other combinations but want to start there.
My starting point:
=IF([Column D]@row = "Escalate", [Column A]@row = "Approved", "")