Hi Andrew,You seem to have a circular dependency in your calculation
scripts. The one in form1.#subform[0].Body.ScoreLetterGen::calculate is
updating the field as form1.#subform[0].Body.ScoreLetter::calculate. If
you can add a
xfa.host.messageBox(xfa.form.form1.#subform.ScoreAvg.rawValue) to the
form1.#subform[0].Body.ScoreLetter::calculate code you can see that it
gets called a lot of times.You might find it easier to reference the
current field using this, and you can remove the reference to t...