I’ve input the IF expression on a test app and it worked perfectly. Then I applied it to the client’s app and it doesn’t work as expected. Basically there is a Status column (Active or Inactive), and there is a Action column which is an enum containing a list of actions:
Extend Expiration Date
Activate New Subscription
Reactivate Expired Subscription
Address Change
Deactivate Subscription
“Deactivate Subscription” is the only choice on the list that would return an Inactive return. So I set the expression as follows:
However, whenever I try to change the value of Action, it always remains Active and will not change to Inactive if “Deactivate Subscription” is selected in the Action list. I hope this makes sense. Here is what happens:
Honestly, I’m not sure if I’m even using the correct expression, or if there is a better way to make this work. I’m trying to simplify the client’s choice and keeping them from have to and Action and Status.

