Hi,
If you want show some fields depending to the values of multiple fields in the form, you should use some tricks. For example, suppose you want display the fieldname2 if the fieldname1 and the fieldname3 have the values 4 and 5, respectively (the values and field names are hypotheticals). First, assign a class name to the fieldname2 through the attribute “Add Css Layout Keywords”, the class name will be used to identify the field, for example myclass.
Now, in any of equations in your form, display or hide the field depending of the other two fields values:
(function(){
if(fieldname1==4 && fieldname3==5) jQuery( ‘.myclass’ ).show();
else jQuery( ‘.myclass’ ).hide();
// The rest of equation here…
})()
Best regards.