Hello @arczil
Yes, of course, that’s possible.
For example, assuming you have the equation: fieldname1*fieldname2 and you want to display the text, The result is ... into an “HTML Content” field.
– Insert an “HTML Content” field in the form with a div tag where display the result as its content:
<div class="result-here"></div>
– Edit the equation as follows:
(function(){
var result=fieldname1*fieldname2;
jQuery('.result-here').html(CONCATENATE('The result is ', result));
return result;
})()
Best regards.