hello
I have this script
// Get field values as numbers
var v1 = +getField("Text2 ").value;
var v2 = +getField("Text10").value;
var v3 = +getField("Text12").value;
var v4 = +getField("Text11").value;
// calculate this field value
event.value = v1+v2+v3 - v4;
how can i transform it to aem FormCalc;
Solved! Go to Solution.
Views
Replies
Total Likes
the value will be in rawValue can be get using fieldname.rawValue
myField1.rawValue + myField2.rawValue + myField3.rawValue
var is supported so you can put it in var
the value will be in rawValue can be get using fieldname.rawValue
myField1.rawValue + myField2.rawValue + myField3.rawValue
var is supported so you can put it in var
Refer to this for Formcalc syntax and built-in functions
https://helpx.adobe.com/pdf/aem-forms/6-3/formcalc-reference.pdf