Hello,
I have been inspecting your form for quite some time now and came to the conclusion that you have had some errors in your form.
I have turned off the Actionscript for the "amountowingw" element at the end of the third page.
When this script is turned off the calculation for "amountowing" started working partially.
The main problem was that in the actionscript for the "amountowing" element on the second page you were using this statement:
if (ff_getElementByName('workshopholidayparties').checked)
{
ff_getElementByName('amountowing').value =
Number(ff_getElementByName('amountowing').value) + Number(ff_getElementByName('workshopholidayparties').value);
}
That can't work since "workshopholidayparties" is a radio group element.
I've replaced that with this code:
if (jQuery('[name="ff_nm_workshopholidayparties[]"]:checked').val())
{
ff_getElementByName('amountowing').value =
Number(ff_getElementByName('amountowing').value) + Number(jQuery('[name="ff_nm_workshopholidayparties[]"]:checked').val());
}
Afterwards, the value of this radio group was added to the sum.
The total in "amountowing" now shows a more similar value to what was expected. Despite that, the sum is still not correct so I assume that you have set this part incorrectly for some other radio or checkbox group so please check that and try to fix accordingly.
Let me know the result.
Regards,
Mihaela