Avatar

Level 1

Hey shawnFMU​, Here is the code to do a simple sum of table column values: (you will need to change the path)

[Calculate Event]

$.rawValue = Sum(FORM.Page1.Body.PaymentTable.MultiPaymentRow[*].AmountPaid);

Here is the code to sum multiple fields:

[Calculate Event]

$.rawValue = InitialAmount.Totalprice - PaymentTable.Footer.AmountPaidTotal;//You can also use '+'

Both are form calc, put the code on the calculate event for the object that you want to set.

Hope that helps.