Hello @cath_allen14
I’ll try to describe the process with a hypothetical example:
Assuming there are four radio buttons fields in the form: fieldname1, fieldname2, fieldname3 and fieldname4, and an “Instruct. Text” field (the fieldname5), that you want to display only if the four radio buttons fields where selected by the user.
Summarizing, you want to create a dependency but that depends on multiple fields at once, in this case the alternative would be a calculated field as auxiliary:
1. Insert a calculated field in the form and enter as its equation the following one:
IF(AND(fieldname1, fieldname2, fieldname3, fieldname4), 1, 0)
2. In the settings of calculated field define the dependency: if value is equal to 1 then, and select the fieldname5 from the list of dependent fields.
3. Finally, as the calculated field is not essential in the form’s interface, you can hide it, ticking the checkbox: “Hide this field from the public form” in its settings.
and that’s all.
Best regards.