Logical expressions in stage-skip-conditions

Hi,
I need for a stage skip conditions which are connected with a ‘OR’.
I tried:

  • Left Value: ((%TestVar1% Equals True) OR (%TestVar2%  Equals True))
  • Equals
    Right Value: True

    This does not work. Can I add logical expressions into such a field? If yes, how and if not, can it be added as feature request?

  • Left Value: %TestVar1%%TestVar2%
  • Contains
    Right Value: True

    This does work. But this seems to be a bad hack

Hi Rynardald,

The Skip Conditions are only combined with AND logic at the moment. I’ll add an item to our to-do list to add a options allow all options to be combined with OR.

You can currently work around this using If and Set Variable actions to conditionally set an additional variable in a previous stage. e.g.

Set Variable (%TestVar1OrTestVar2% = False)
If (%TestVar1% Equals True)
    Set Variable (%TestVar1OrTestVar2% = True)
If (%TestVar2% Equals True)
    Set Variable (%TestVar1OrTestVar2% = True)