Many Calculations Causing Form to Pause
I have created a 6 page QC form with rankings in Adobe Acrobat XI. There are 20 sections with approx 11 questions in each section. Each question is a dropdown with choices NA,1,2,3. The associated export values are 0,3,3,3. I have three calculations after each section - points possible, points earned, percentage.
points possible example:
event.value = this.getField("Misc1").value + this.getField("Misc2").value +this.getField("Misc3").value +this.getField("Misc4").value +this.getField("Misc5").value +this.getField("Misc6").value +this.getField("Misc7").value +this.getField("Misc8").value +this.getField("Misc9").value +this.getField("Misc10").value;
points earned: simple sum of fields in section (e.g. Misc1, Misc2, etc)
percentage example:
var numerator = +getField("Points earned_18").value;
var denominator = +getField("Points possible_18").value;
event.value = denominator !== 0 ? numerator / denominator : "";
I also have a total calculation for points possible, points earned, and percentage. I have checked the calculation order and it is correct. When I run the form I have to wait about 5 seconds when moving between each drop down field as the whole form is trying to calculate. Any suggestions?
