Comparing checkbox selections

Good afternoon.

How can I compare if some checkbox is selected in a variable of Prompt Type = Checkbox Selection?

%VARIABLE%.VALUE_OF_THE_CHECKBOX?

Thank you.

Hi giancarloandroid.

For a checkbox select variable type, the value is the name of the option(s) selected. For example a variable %somevariable% with options test1 and test2. If test1 checkbox is ticked the value of the variable will be ‘test1’, if both are ticked the value would be ‘test1 test2’. A variable could then be compared (depending on what you trying to achieve) using %somevariable% contains ‘test1’ (within an If stage action).

With a single checkbox variable type, values are ‘true’ for ticked or ‘false’ for not ticked.

Thank you. You did help me a lot (;