Hello @amirdorna,
The dependencies work in the opposite direction, the dependent fields are shown if the choice is ticked.
If you want customize the dependencies, like in this case, the alternative would be use a calculated field as auxiliary.
For example, assuming your form includes the input fields: fieldname1 and fieldname2, and the checkbox field: fieldname3, and you want hide the fields: fieldname1 and fieldname2 if the fieldname3 is ticked
– Insert a calculated field with the equation:
IF(fieldname2,0 , 1)
Now, in the dependencies section of the calculated field define the following dependency:
If value is equal to 1 then show the fields: fieldname1, fieldname2 (pressing the plus button you can associate multiple fields to the dependency)
As the calculated field is used as auxiliary, it is not relevant in the form’s interface, so, you can tick the checkbox: “Hide Field From Public Page” in its settings.
Best regards.