Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Adding Numeric fields together

Avatar

Level 1

I have added another NumericField (4) to a form and want to calculate it with the 'total' numericField only, ie

NumericField 1

NumericField 2

NumericField 3 - this is 15% of the total of NF1 & 2

NumericField 4 - this is to exclude the 15% and then be added to the Total

NumericField 5 - Total of all the above

I don't seem to be able to get field 4 to adjust the Total when I add a value. How would I change it

the script for NumericField5 is: event.value=NumericField1.rawValue+NumericField2.rawValue+NumericField3.rawValue

(using Livecycle Designer ES 8.2)

Thank you

1 Accepted Solution

Avatar

Correct answer by
Level 1

I have solved my question

the answer was: event.value=NumericField1.rawValue+NumericField2.rawValue+NumericField3.rawValue+NumericField4.rawValue

It didn't work when I typed it in manually but when I used the drop down menu options for each part of the equation it worked.

View solution in original post

1 Reply

Avatar

Correct answer by
Level 1

I have solved my question

the answer was: event.value=NumericField1.rawValue+NumericField2.rawValue+NumericField3.rawValue+NumericField4.rawValue

It didn't work when I typed it in manually but when I used the drop down menu options for each part of the equation it worked.