Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

calcuations in adobelivecycle

Avatar

Not applicable

Hello

i have made a form using adobe livecycle designer and i need to make calculations in the form.

this calcuation include:

1- i want to get average of 4 numeric values and put the average in another field> example; i have Cell A,B,C,D which are numeric, i want to obtain the average of the 4 values and put it in cell2

2- i want to obtain the standard deviation for about 4 cells which are numeric

( in adobe acrobat pro i was using this code:

var MyValues = new Array();

var MyFields = new Array("F0VerHR", "F1VerHR", "F1secondVerHR", "F2VerHR", "F3VerHR");

var oField;

var nField;

for(var i = 0; i < MyFields.length; i++)

{

  nField = '';

  nField = GetField(this, MyFields[i]).valueAsString;

  if(nField != "") MyValues.push(Number(nField));

}

event.value = standardDeviation(MyValues);

i hope some one help me in that ane if any one have any pdf explain all calcultions that can be performed and codes.

thanks

0 Replies