Hi everybody
I'm building an easy data form app but I'm having an issue with a circular reference.
For the purpose of the exercise let´s say that I have 2 questions: Q1 and Q2.
The visible property of the Q2 it is based on the answer of the Q1(is a dropdown), if the user selects "yes" is true otherwise it is false (if(Q1.datacardvalue.selected.value="Yes",true,false). Now for the Q2 I also had in the form a checkbox that will not be visible for the user with the default property like this=if(Q2datacardvalue.selected.value="No",true,false) however the system shows me that this is not possible because this creates a circular reference with the visible property of the Q2.
Any ideas on a workaround for this?
Thanks in advance for any help you can provide.