[ad_1]
Hello @tosh11formula
I don’t what you tried to implement with the following piece of code:
fieldname2fieldname6fieldname7/1000000If you want to calculate the product between fieldname2, fieldname6, and fieldname7, the correct would be:
fieldname2*fieldname6*fieldname7/1000000You could implement the equation as follows:
(function(){
var result = fieldname2*fieldname6*fieldname7/1000000;
if(30<result) return 'Your message here';
return PREC(result,2);
})()Best regards.
