I was successfully able to write a formula to fill in the value of the User 2 Action column with the value of User 1 Action if Prod User 2 is not blank:
=IF(AND(NOT(ISBLANK([Prod User 2]@row)), NOT(ISBLANK([User 1 Action]@row))), [User 1 Action]@row), "")
I would like to add one more level to this where the above works only if the value of the Update Flag column is equal to "Yes". I've looked at other nested questions and tried many different iterations but can't seem to figure it out. I'm not even sure if what I want to do is possible but any help would be greatly appreciated.
In the screenshot, the 2nd row should execute my formula above if Update Flag = "Yes" but should leave the 3rd row alone because Update Flag is blank. My formula, as is, will always change the value of User 2 Action if Prod User 2 is not blank.