Hello @luciche
In the equations, you can refer to the fields by their names, only to fields in the current form.
So, the workaround would be populated fields in the different forms with the values of the field in the main form, and then, use these fields in the corresponding equations.
I’ll try to describe the process with only one pair of forms, and you should repeat the process with the other forms on the page.
1. Assign a custom class name to the fieldname10 in form 8, for example: class-a
Note: the class names are assigned to the fields through their attributes: “Add CSS Layout Keywords”
2. Insert a hidden field in the form 9 (I’ll assume it is the fieldname123), and assign to it a custom class name too, for example: class-b
3. Now, Insert into the form 9 an “HTML Content” field with the following piece of code:
<script>
jQuery(document).on('change', '.class-a input', function(){jQuery('.class-b input').val(this.value).change();});
</script>
4. Finally, you can use the fieldname123 field in the equations associated with the calculated fields in form 9 as usual.
Best regards.