“is checked” returns a yes/no value.
You want to return a value that is actually the check boxes value.
You have 2 options:
Option 1: If the user can only select 1 status, then just change from checkbox options into one radio button list with the same options, and then have the constraint = the radio button choice. Don’t forget to check “ignore empty constraints”.
Option 2: If the user can select more than 1 status, then you need to do a bit more:
Step 1: Create a custom state on the page called something like “StatusChoices”. This will be a text type and check the box for a list.
Step 2: Add a workflow step for each status that says the following “When this status is clicked and this status is not checked, then add this status to the custom state”.
Step 3: Repeat step 2 for each status but say the following “When this status is clicked and this status is checked, then minus this status from the custom state”.
Step 4: Replace your constraint to be = “StatusChoices”.
Step 5: Check “ignore empty constraints”
How do I add this status?
I tried to This check box is checked… It was yes or no, so it doesn’t work…
Next, I tried to Get option(status is choose option set), then appeared error massage. The massage is " should be list of textd ,but now it is a text"…