Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
@klothoskir1
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
View solution in original post
Refer to this for Formcalc syntax and built-in functions
https://helpx.adobe.com/pdf/aem-forms/6-3/formcalc-reference.pdf
Views
Likes
Replies