I created a new field which uses two option for user to select "Yes" and "No".
And I wished to have a set of question appear or hide according to that selection of "Yes" and "No" where if it's Yes the question will popped up and otherwise.
I created a formula below and I connected the dropdown to the new field I created.
If(Dropdown1.Selected.Value="No",false,true)
The problem I getting was incompatible in data types. I tried disconnecting the dropdown items with the new field I created and I went to insert a code ["Yes","No"] in the Items section of the Dropdown1 then input the formula again on to the Visible section of the question I would like to pop up or not with the code below
If(Dropdown1.Selected.Value="No",false,true)
And It worked. It only worked if I input the option values through coding instead of connecting the dropdown with the field I just created. May I know how can I convert the two option data type to text?