How do I add multiple things in the Condition "If Variable is not"?

So I have this macro where I have all of the following conditions to be true:

  1. check for at pixel condition
  2. check for Variable condition

However in Variable condition I want to have if Variable is not: either "true" or "cancelled"

If I just add 3 conditions then it triggers irrespectively

Thanks in anticipation

Is you want the condition to be if:

  • the pixel is green
  • the variable is not “true”
  • the variable is not “cancelled”

Then the action should work as expected fairly easily:

If you want some variant of that condition, maybe an and/or kind of condition, then you might need two levels of If Then Else actions.

1 Like

Didn't think of the multi-level conditions. Awesome Thanks.