How to fetch data from Stringlist Checkboxes?

How to fetch data from Stringlist Checkboxes?

Hi team,

I need your guidance on Zoho Creator.

I have a stringlist called "Activity_Type" and it has 2 checkboxes: "Yes" and "No".

I'm writing a Workflow IF condition depending on what the user chose (Yes or No), but the line of code below does not seem to work.

if ( input.Activity_Type.contains("Yes")) 
      {
            ...
      }

When I select "Yes", it does not execute the statement.