Hello @rphrus
The solution in this situation would be to use the calculated field as auxiliary, but display the result into another field.
I’ll try to describe the process with a hypothetical example:
Assuming your current equation is: fieldname1+fieldname2
1. Insert a “HTML Content” field in the form with a div tag as its content where will be displayed the equation’s results. For example:
<div class="result-here"></div>
2. Edit the equation as follows:
(function(){
var result = fieldname1+fieldname2;
jQuery('.result-here').html(result);
return result;
})()
‘
3. Finally, as the calculated field is being used as auxiliary, you can hide it by ticking the checkbox: “Hide Field From Public Page” in its settings.
Best regards.