I have a huge pdf document (103 pages) I am converting to a "fillable form" for another department, and several of the pages have spreadsheet-like calculations. I can do the subtotals with a standard javascript calculation:
this.rawValue = field1.rawValue + field2.rawValue...
But when I try to do the grand totals using the subtotal fields in the above calculation, nothing calculates (I type "50" in the field, and "50" shows up in the subtotal field but nothing shows up in the grand total field). I have checked and re-checked the code, I'm wondering if the above code does not work on calculated fields?
Sorry to waste anyone's time.